- 论坛徽章:
- 0
|
我在用SOCKET编程
写一个SOCKETCLIENT和一个SOCKETSERVER
在CLIENT端:我想用一个Jbutton的ACTIONLISTENER取得jfrmae中Jtextarea中的内容并用一个SOCKET发送出去
大家看一下了,有多少问题
package chat.client;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.net.*;
import java.io.*;
public class ChatClientMain extends JFrame implements ActionListener
{
JLabel numJL;
JTextArea contentJTA;
JTextArea wordJTA;
JScrollPane contentJSP;
JScrollPane wordJSP;
JButton sendJB;
JButton exitJB;
JPanel midJP;
JPanel downJP;
JPanel downrightJP;
String username = ×××;
public ChatClientMain()
{
numJL = new JLabel();
contentJTA = new JTextArea(15,30);
contentJSP = new JScrollPane(contentJTA);
wordJTA = new JTextArea(3,25);
wordJSP = new JScrollPane(wordJTA);
sendJB = new JButton("Send" ;
exitJB = new JButton("Exit" ;
midJP = new JPanel(new FlowLayout(FlowLayout.CENTER));
downJP = new JPanel(new FlowLayout());
downrightJP = new JPanel(new GridLayout(2,1));
Container c = getContentPane();
c.add(numJL, BorderLayout.NORTH);
c.add(midJP, BorderLayout.CENTER);
c.add(downJP, BorderLayout.SOUTH);
midJP.add(contentJSP);
downJP.add(wordJSP, BorderLayout.WEST);
downJP.add(downrightJP, BorderLayout.EAST);
contentJTA.setLineWrap(true);
contentJTA.setEditable(false);
wordJTA.setLineWrap(true);
downrightJP.add(sendJB);
downrightJP.add(exitJB);
sendJB.addActionListener(this);
exitJB.addActionListener(this);
this.setTitle("Chatting..." ;
this.setSize(380,420);
this.setResizable(false);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void setName(String name)
{
username = name;
this.numJL.setText("the chatter now is:" + username);
}
private void nullError(String errorInfo,String errorType)
{
JOptionPane.showMessageDialog(this,errorInfo,errorType,JOptionPane.INFORMATION_MESSAGE);
}
private void send(String str)
{
int port = 8505;
try{
Socket s = new Socket("219.217.42.×××",port);
OutputStream os = s.getOutputStream();
OutputStreamWriter osw = new OutputStreamWriter(os);
PrintWriter pw = new PrintWriter(osw);
pw.println(str);
pw.flush();
}catch(IOException e){
System.out.println("XXX" ;
}
}
public static void main(String[] args)
{
ChatClientMain ccm = new ChatClientMain();
ccm.show();
}
public void actionPerformed(ActionEvent e)
{
String myWord = wordJTA.getText();
if(e.getSource() == sendJB)
{
if(myWord.trim().equals("" )
{
this.nullError("The Message Connot Be Null!","Input Error" ;
wordJTA.grabFocus();
}else{
contentJTA.append(myWord + "\n" ;
wordJTA.setText(null);
String mymsg = this.username + "::" +myWord + "\n";
this.send(mymsg);
}
}
if(e.getSource() == exitJB)
{
System.exit(0);
}
}
} |
|