更新jTextArea时出现问题

时间:2010-10-18 02:48:57

标签: swing rmi event-dispatch-thread

我正在写一个RMI聊天程序。在我的程序中,我能够接收和发送消息,但我无法在TextArea中显示它。我不确定是什么错误。我也试过使用Event Dispatch方法。它没有帮助。

public class client extends javax.swing.JFrame implements inter {

public client() {
    initComponents();
}


private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
    try {
        final inter i = (inter) Naming.lookup("rmi://localhost:1111/client1");
        final String msg = jTextField1.getText();
        if (msg.length() > 0) {
            jTextArea1.append("Me :" + msg);
            java.awt.EventQueue.invokeLater(new Runnable() {

                public void run() {
                    try {
                        i.rcvMsg("Client 1 : " + msg);
                    } catch (RemoteException ex) {
                    }
                }
            });


        }
    } catch (RemoteException ex) {
     } catch (NotBoundException ex) {
     } catch (MalformedURLException ex) {
     }
}                                        

 public void rcvMsg(String msg) {
    final String s = msg;
    java.awt.EventQueue.invokeLater(new Runnable() {

        public void run() {
            System.out.println("server called");
            System.out.println(s);
            jTextArea1.append(s);
            System.out.println("client msg" + java.awt.EventQueue.isDispatchThread());
            jTextArea1.update(jTextArea1.getGraphics());
        }
    });
}

public static void main(String args[]) {
    try {
        java.awt.EventQueue.invokeLater(new Runnable() {

            public void run() {
                new client().setVisible(true);
            }
        });
        client c2 = new client();
        inter stub = (inter) UnicastRemoteObject.exportObject(c2, 0);
        Registry registry = LocateRegistry.createRegistry(1113);
        registry.bind("client2", stub);
    } catch (AlreadyBoundException ex) {
    } catch (AccessException ex) {
    } catch (RemoteException ex) {
    }
}
}

请帮忙......

2 个答案:

答案 0 :(得分:1)

使用getGraphics()分享一些信息不受欢迎,可能会导致问题,

jTextArea1.update(jTextArea1.getGraphics());

我还用RMI创建了聊天应用程序:

Pass by reference problem in RMI?还有客户写在那里,可能会对你有用。

答案 1 :(得分:0)

创建mainc2,请致电c2.setVisible(true);

rcvMsg中的代码正在client c2 实例上调用。由于c2实例永远不会显示,因此您看不到任何更改。

您可能希望客户端连接到服务器,而不是直接连接到其他客户端。客户端到客户端将适用于2个端点。但是如果要添加第三个会发生什么?第四个?你真的想要一个server作为所有客户的中间人。