繁体   English   中英

Java套接字writeObject卡住

[英]Java socket writeObject stucks

我正在尝试创建一些本地聊天软件。 一切工作正常,但只停留在一点上; 当用户单击按钮时,我的程序卡住了。

我写了一个修改后的类,它对服务器和客户端都起作用。

下面是我的代码:

package connections;

import java.awt.event.ActionEvent;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.nio.channels.SocketChannel;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JFrame;
import ui.ChatWindow;

public class Chat{

private SocketChannel socketChannel;
private ConnectionType connectionType;

private ObjectOutputStream out;
private ObjectInputStream in;

private String strClientName;

private ChatWindow chatWindow;
private String strMessage;

public Chat(SocketChannel socketChannel, ConnectionType connectionType) {
    this.socketChannel = socketChannel;
    this.connectionType = connectionType;

    init();
}

private void init() {

    new Thread(this::initThread).start();
}

private void initThread() {
    try {
        out = new ObjectOutputStream(socketChannel.socket().getOutputStream());
        in = new ObjectInputStream(socketChannel.socket().getInputStream());

        if (connectionType == ConnectionType.SERVER) {
            getClientName();
            sendMyName();
        } else {
            sendMyName();
            getClientName();
        }

        chatWindow = new ChatWindow();
        chatWindow.btnSend.addActionListener(this::eventBtnSend);
        chatWindow.setTitle(strClientName);
        chatWindow.setSize(600, 400);
        chatWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        if (connectionType == ConnectionType.CLIENT) {
            chatWindow.setVisible(true);
            chatWindow.requestFocus();
        }

        System.out.println("here");

        beginChat();

        System.out.println("thread ends");

    } catch (IOException ex) {
        Logger.getLogger(Chat.class.getName()).log(Level.SEVERE, null, ex);
    }
}

private void getClientName() {

    try {
        strClientName = (String) in.readObject();
    } catch (IOException | ClassNotFoundException ex) {
        Logger.getLogger(Status.class.getName()).log(Level.SEVERE, null, ex);
    }
}

private void sendMyName() {

    try {
        out.writeObject(main.Config.myName);
        out.flush();
    } catch (IOException ex) {
        Logger.getLogger(Status.class.getName()).log(Level.SEVERE, null, ex);
    }
}

private void beginChat() {
    while (true) {
        try {                
            waitForMessage();
        } catch (IOException | ClassNotFoundException ex) {
            Logger.getLogger(Chat.class.getName()).log(Level.SEVERE, null, ex);
        }
    }
}

private void waitForMessage() throws IOException, ClassNotFoundException {
    System.out.println("waiting for Message : " + connectionType);
    strMessage = (String) in.readObject();
    System.out.println("Message received");
    chatWindow.txtDisplay.append(strClientName + " : " + strMessage + "\n");

    if(chatWindow.isVisible() == false){
        chatWindow.setVisible(true);
    }
}

private void sendMessage(String strMessage) {

    try {
        out.writeObject(strMessage);
        out.flush();
    } catch (IOException ex) {
        Logger.getLogger(Chat.class.getName()).log(Level.SEVERE, null, ex);
    }
}

private void eventBtnSend(ActionEvent ae){
    System.out.println("a");
    sendMessage(chatWindow.txtMessage.getText());
    System.out.println("b");
    chatWindow.txtDisplay.append("Me : " + chatWindow.txtMessage.getText() + "\n");
    System.out.println("c");
    chatWindow.txtMessage.setText("");
}
}

当服务器和客户端连接时,我可以看到以下输出:

here
waiting for Message : SERVER
here
waiting for Message : CLIENT

但是,当我单击发送按钮时,我的程序卡住了。 单击按钮后,我可以看到:

a on console.

这个词是“块”。 它阻止了I / O。 它会阻塞。

不要在事件线程上执行阻塞操作。 所有网络代码都应在单独的线程上运行。 其中包括readObject()writeObject(),以及flush(),还创建了流。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM