gpt4 book ai didi

java - 如何停止程序在关闭GUI上运行无限循环(java)

转载 作者:行者123 更新时间:2023-12-02 07:25:24 25 4
gpt4 key购买 nike

我有一个使用套接字进行服务器/客户端通信的简单程序。服务器类包含run()方法,该方法有无限循环来等待套接字接受。

无论如何,我在构造函数中编写了一段代码来终止关闭时的处理,

 this.addWindowListener(new java.awt.event.WindowAdapter() {
@Override
public void windowClosing(java.awt.event.WindowEvent windowEvent) {
System.out.println("Close operation server done");
toClient.println("Bye");
closeStreams();
socket = null;
serverSocket = null;
System.exit(0);
}
});

当我阅读 method 的 API 时windowClosing(WindowEvent e) 它说:

Invoked when a window is in the process of being closed. The close operation can be overridden at this point.

它表示窗口正在关闭的过程中。但 run() 方法内的循环仍然获得控制权,并且由于程序逻辑而不会完成,因此窗口不会关闭(实际上 GUI 已关闭),但处理仍在幕后进行。

更新:

run() 方法:

public void run()
{
try
{
while (true)
{
idle = true;
System.out.println("System is running");
socket = serverSocket.accept();
System.out.println("Client accepted on server side");
openStreams();
toClient.println("Hello: server is connected " + serverAddress.getLocalHost().toString());
processClient();
// closeStreams();
}
} catch (Exception e)
{
System.out.println("Error accepting server " + e);
}
}

processClient() 方法:

 public void processClient() throws IOException
{
System.out.println("Porcessing start");
String line = fromClient.readLine();
try
{
while (!(line.equals("Bye")))
{
textToReceive.append("He: " + line + newline);
line = fromClient.readLine();
}
closeStreams();

} catch (IOException ex)
{
System.out.println("Error reading from client " + ex);
}
}

如何正确强制程序运行?

更新 2:整个工作服务器类:

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.io.*;
import java.net.*;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.*;

/**
*
* @author S
*/
public class ChatServer extends JFrame
{

private InetAddress serverAddress;
private Socket socket;
private ServerSocket serverSocket;
private InputStream is;
private OutputStream os;
private BufferedReader fromClient;
private PrintWriter toClient;
private JButton send;
private JPanel uperPanel;
private JPanel midPanel;
private JPanel downPanel;
private JTextArea textToSend;
private JTextArea textToReceive;
private JLabel addressL;
private final int port = 5555;
private boolean idle = false;
private int timeout = 3000;
public static String newline = System.getProperty("line.separator");

private ChatServer()
{
this.setGUI();
this.setVisible(true);
try
{
serverSocket = new ServerSocket(port);
this.run();
} catch (IOException ex)
{
Logger.getLogger(ChatServer.class.getName()).log(Level.SEVERE, null, ex);
}

this.addWindowListener(new java.awt.event.WindowAdapter()
{
@Override
public void windowClosing(java.awt.event.WindowEvent windowEvent)
{
idle = true;
closeStreams();
socket = null;
serverSocket = null;
System.exit(0);
}
});
}

public void run() throws IOException
{
try
{
while (true)
{
System.out.println("System is running");
socket = serverSocket.accept();
System.out.println("Client accepted on server side");
openStreams();
toClient.println("Hello: server is connected " + serverAddress.getLocalHost().toString());
processClient();
// closeStreams();
}
} catch (java.net.SocketTimeoutException ee)
{

closeStreams();
System.out.println(ee);


} catch (Exception e)
{
System.out.println("Error accepting server " + e);
}

}

public void processClient() throws IOException
{
System.out.println("Porcessing start");
String line = fromClient.readLine();
try
{
while (!(line.equals("Bye")))
{
textToReceive.append("He: " + line + newline);
line = fromClient.readLine();
}
closeStreams();

} catch (IOException ex)
{

System.out.println("Error reading from client " + ex);

}
}

private void setGUI()
{

this.setSize(375, 314);


send = new JButton("send");

try
{
addressL = new JLabel("My Server address: " + serverAddress.getLocalHost().toString()
+ " Port: " + this.port);
} catch (Exception e)
{
System.out.println("Unknown Host problem " + e);
}

textToReceive = new JTextArea(12, 30);
textToReceive.setLineWrap(true);
JScrollPane recievedScrolledText = new JScrollPane(textToReceive);
recievedScrolledText.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
textToReceive.setEditable(false);


textToSend = new JTextArea(3, 25);
textToSend.setLineWrap(true);
JScrollPane sentScrolledText = new JScrollPane(textToSend);
sentScrolledText.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
textToSend.setEditable(true);

uperPanel = new JPanel();
midPanel = new JPanel();
downPanel = new JPanel();

uperPanel.add(addressL);


midPanel.add(recievedScrolledText);
downPanel.add(sentScrolledText);
downPanel.add(send);

Container c = getContentPane();
c.setLayout(new BorderLayout());
c.add(uperPanel, "North");
c.add(midPanel, "Center");
c.add(downPanel, "South");

send.addActionListener(new ButtonWatch());
textToSend.addKeyListener(new KeyWatch());
}

private void openStreams() throws IOException
{

is = socket.getInputStream();
fromClient = new BufferedReader(new InputStreamReader(is));
os = socket.getOutputStream();
toClient = new PrintWriter(os, true);
System.out.println("open stream is open on server");
}

private void closeStreams()
{
try
{

if ((toClient != null) && (os != null)
&& (fromClient != null) && (is != null)
&& (fromClient != null) && (socket != null))
{
toClient.close();
os.close();
fromClient.close();
is.close();
socket.close();
}


} catch (IOException ex)
{
System.out.println("Problem closing streams " + ex);
}
}

private class KeyWatch extends KeyAdapter
{

public void keyPressed(KeyEvent e)
{
if (e.getKeyCode() == KeyEvent.VK_ENTER)
{
String line = textToSend.getText();
textToSend.setText("");
toClient.println(line);
textToReceive.append("You: " + line + newline);
}
}

public void keyReleased(KeyEvent e)
{
if (e.getKeyCode() == KeyEvent.VK_ENTER)
{
}
}

public void keyTyped(KeyEvent e)
{
if (e.getKeyCode() == KeyEvent.VK_ENTER)
{
}
}
}

private class ButtonWatch implements ActionListener
{

@Override
public void actionPerformed(ActionEvent e)
{
Object buttonPressed = e.getSource();

if (buttonPressed == send)
{
String line = textToSend.getText();
textToSend.setText("");
toClient.println(line);
textToReceive.append("You: " + line + newline);

System.out.println("send to client " + line);
}

}
}

public static void main(String[] args)
{
ChatServer s = new ChatServer();
s.setVisible(true);
}
}

现在如何在关闭后终止它。

最佳答案

- 那么最好使用 Executor 来跨越线程。

- 然后使用 cancel(true)submit() 方法来中断此特定线程。

-如果你想直接使用Thread,那么你可以使用interrupt()interrupted() > 中断线程的方法。

关于java - 如何停止程序在关闭GUI上运行无限循环(java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13643214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com