GUI を使用して rmi チャット ルームを開発しています。クライアントから入力を取得し、それをサーバーに送信する必要がありますが、Jtextfield から読み取った値を使用できません。ユーザーからの読み取り入力を使用してサーバーに送信する方法を教えてください。
import java.applet.Applet;
import java.awt.*
import java.rmi.Naming;
import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;
import javax.swing.*;
public class MyChatClient extends UnicastRemoteObject{
JFrame F = new JFrame("Chat room");
JTextField T = new JTextField(25);
JPanel pane = new JPanel(new GridBagLayout());
JButton B = new JButton("submit");
JPanel pane2 = new JPanel(new GridBagLayout());
TextArea TA = new TextArea(15,50);
String response;
protected MyChatClient() throws RemoteException {
F.setSize(400,400);
pane.add(T);
pane.add(B);
F.add(pane, BorderLayout.SOUTH);
TA.setEditable(false);
TA.setBackground(Color.WHITE);
pane2.add(TA);
F.add(pane2, BorderLayout.BEFORE_FIRST_LINE);
F.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
F.setVisible(true);
B.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
response = T.getText(); // I am not able to send this to server
}});
}
public static void main(String[] args) throws RemoteException {
MyChatClient mc = new MyChatClient();
try{
//System.setSecurityManager(new RMISecurityManager());
//Registry reg = LocateRegistry.getRegistry("localhost");
ServerImpl svr = (ServerImpl)Naming.lookup("rmi://localhost/ChatServer") ;
System.out.println("Server found");
svr.sendMessage(response); // here is the problem
}catch(Exception e){
System.err.print(e);
}
}
}