我正在尝试使用Swing构建客户端服务器聊天应用程序。
当我启动客户端时,我发送一条消息,我可以在客户端站点接收,但是当我按下服务器站点上的按钮时,它将不会打开一个新的框架(这在我的情况下是错误的)。
我该如何解决?任何人都可以通过其他方式向我提出建议吗?
我的代码是(服务器站点):
import java.net.*;
import java.io.*;
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.sql.*;
class Cli extends JFrame
{
ServerSocket ss;
Socket soc;
InputStream in;
OutputStream out;
DataInputStream sin;
DataOutputStream sout;
JLabel l1;
JTextField txt1;
JButton addd;
Cli() throws Exception
{
Class.forName("com.mysql.jdbc.Driver");
Connection cn=DriverManager.getConnection("jdbc:mysql://localhost:3306/nirav","root","root");
JPanel pan=new JPanel(new GridLayout(2,1));
ss=new ServerSocket(8888);
//ss.setSOLimit(10000);
l1=new JLabel("waiting for client");
txt1=new JTextField(40);
addd=new JButton("click here to send");
addd.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{ try{
JOptionPane.showMessageDialog(null,"Data is successfully inserted into the database." );
l1.setText("waiting");
Recieve c=new Recieve();
c.setSize(300,300);
c.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
c.setVisible(true);
}catch(Exception e)
{
System.out.println(e.toString());
}
}
});
soc=ss.accept();
in=soc.getInputStream();
out=soc.getOutputStream();
sin=new DataInputStream(in);
sout=new DataOutputStream(out);
String s="";
try{
s=sin.readUTF();
}catch(Exception e)
{
}
l1.setText("client :"+s);
pan.add(l1);
pan.add(txt1);
pan.add(addd);
add(pan);
}
class Recieve extends JFrame
{
JLabel msg;
JTextField t1;
JButton a1;
Recieve() throws Exception
{
JPanel pan=new JPanel(new GridLayout(2,1));
t1=new JTextField(40);
a1=new JButton("click here to send");
//msg=new JLabel("waiting...");
a1.addActionListener(new ActionListener()
{ public void actionPerformed(ActionEvent ae)
{ try{
String s;
String str="Server :";
sout.writeUTF(t1.getText());
//msg.setText(str);
sout.flush();
}catch(Exception e)
{
System.out.println(e.toString());
}
}});
pan.add(t1);
pan.add(a1);
add(pan);
}
}
}
class Server
{
public static void main(String args[]) throws Exception
{
try{
Cli c=new Cli();
c.setSize(300,300);
c.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
c.setVisible(true);
}
catch(Exception e)
{
System.out.println(e.toString());
}
}
}
答案 0 :(得分:0)
您如何捕获从服务器发送的消息?当应用程序从服务器接收数据时,您需要实现一些能够利用UI侦听器在聊天窗口上显示更新内容的内容。
我刚做了一个快速的研究并发现了这个项目,尝试使用他的代码作为参考来实现你的程序: https://github.com/rafaelsakurai/socket-exemplo-chat-swing