免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2217 | 回复: 5
打印 上一主题 下一主题

Data sharing problem [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-03-17 12:09 |只看该作者 |倒序浏览
In my program, there are two panels organized in CardLayout, panel 1 for user login, panel 2 for displaying user profile, and a singleton class is created for data sharing between these two panels.

Scenario can be, on panel 1, user type in username and password, click button "login", then in actionPerformed(ActionEvent e), username will be saved in singleton class String username = "somebody" and panel 2 will be made visible on the screen with the username in a JLabel.

My problem is, when I click the button, panel 2 shows up, but the username is lost, seems the change in actionPerformed() does not affect the singleton variable username. But if I put the change String username = "somebody" in constructor, the change takes place.

Any help will be appreciated!

论坛徽章:
0
2 [报告]
发表于 2008-03-17 13:29 |只看该作者
It may be changed elsewhere.

论坛徽章:
0
3 [报告]
发表于 2008-03-17 20:25 |只看该作者

回复 #2 CyberBlue 的帖子

thanks for reply. I've tested different ways of singleton, didn't work out though. the original code was long and a little messy. below is the simplified version which maintains the problem.

This is the main class of the program.


  1. import javax.swing.*;
  2. import java.awt.*;

  3. public class AlbumSys extends JFrame {

  4.     JPanel pnlCards = null;
  5.     CardLayout layout = null;
  6.    
  7.     public AlbumSys ()
  8.     {
  9.         layout = new CardLayout();
  10.         pnlCards = new JPanel(layout);
  11.         pnlCards.add(new PanelAuthen(), "authentication");
  12.         pnlCards.add(new PanelAlbumList(), "albumlist");
  13.         getContentPane().add(pnlCards);
  14.         setDefaultCloseOperation(EXIT_ON_CLOSE);
  15.     }
  16.    
  17.     public void init()
  18.     {
  19.         setLocation(500, 400);
  20.         pack();
  21.         setVisible(true);
  22.         
  23.         while(true) {
  24.             if (Repository.stageChanged) {
  25.                 switch (Repository.currStage) {
  26.                     case 0:
  27.                         layout.show(pnlCards, "authentication");
  28.                         break;
  29.                     case 1:
  30.                         layout.show(pnlCards, "albumlist");
  31.                         break;
  32.                     default:
  33.                         layout.show(pnlCards, "authentication");
  34.                 }
  35.                 Repository.stageChanged = false;
  36.             }
  37.             
  38.             try {
  39.                 Thread.sleep(10);
  40.             } catch (InterruptedException ie) {
  41.                 ie.printStackTrace();
  42.             }      
  43.         }
  44.     }
  45.    
  46.     public static void main(String[] args)
  47.     {
  48.         new AlbumSys().init();
  49.     }
  50. }

复制代码


This is the singleton class for data sharing between panels.


  1. public class Repository {
  2.    
  3.     private final static Repository instance = new Repository();
  4.     private Repository () {}
  5.     public static Repository getInstance() { return instance; }
  6.    
  7.     public static int currStage = 0;
  8.     public static Boolean stageChanged = false;
  9.     public static String username = "Sad! It's not changed.";
  10. }
复制代码


This is panel 1 for user login.


  1. import javax.swing.*;
  2. import java.awt.*;
  3. import java.awt.event.*;

  4. public class PanelAuthen extends JPanel implements ActionListener{
  5.    
  6.     public PanelAuthen()
  7.     {
  8.         Button btnSignIn = new Button("signin");
  9.         btnSignIn.addActionListener(this);
  10.         add(btnSignIn);
  11.     }
  12.    
  13.     public void actionPerformed(ActionEvent e)
  14.     {
  15.         String cmd = e.getActionCommand();
  16.         if (cmd.equals("signin")) {
  17.             Repository.username = "Haha! It's been changed!";
  18.             Repository.currStage = 1; // to switch to album list panel
  19.             Repository.stageChanged = true;
  20.         }
  21.     }
  22. }
复制代码


This is panel 2 for displaying user profile.


  1. import javax.swing.*;
  2. import java.awt.*;
  3. import java.awt.event.*;

  4. public class PanelAlbumList extends JPanel{

  5.     public PanelAlbumList()
  6.     {
  7.         JLabel lblTitle = new JLabel(Repository.username);
  8.         add(lblTitle);
  9.     }
  10. }
复制代码

[ 本帖最后由 thinhare 于 2008-3-17 20:40 编辑 ]

AlbumSys.zip

1.56 KB, 下载次数: 35

论坛徽章:
0
4 [报告]
发表于 2008-03-17 23:02 |只看该作者
The two panels are initialized and set the default value of their variables when the program start up. When you click the button their variables won't change.

So you must write some code that reload the text of the label. And add them to the action method of the button.

论坛徽章:
0
5 [报告]
发表于 2008-03-18 03:48 |只看该作者
that was exactly what I found out lately.  thanks!

论坛徽章:
0
6 [报告]
发表于 2008-03-19 13:43 |只看该作者
Good English, poor Java
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP