我正在尝试追加我从客户端程序中获取的字符串。但是我这样做是为了使append语句处于while循环中。但是,这会影响程序,不会将消息REALTIME发送到JTextArea。
如何使程序不会使用while循环或for循环并继续接受来自客户端的消息并将其实时输出到textarea?也许只是一个if声明?
while循环区域
while ((inputLine = in.readLine()) != null)
适用于
等领域 tfFIXMsg.append( inputLine + "\n\n\n");
和
tfCSVLine.append(outputLine+"\n\n\n");
它不会在textArea上显示消息UNTIL完成while循环。 我怎样才能使它继续接收来自客户端的消息,并能够实时将其输出到textArea
try {
while ((inputLine = in.readLine()) != null)
{
System.out.println ("Server: " + inputLine);
tfFIXMsg.append( inputLine + "\n\n\n");
int pos = inputLine.indexOf(inputLine, 0);
h.addHighlight(50, 60, DefaultHighlighter.DefaultPainter);
if (inputLine.trim().equals("Bye.")) {
System.out.println("Exit program");
break;
}
Scanner input1 = new Scanner(new File(csvName));
Scanner input2 = new Scanner(new File(csvName));
Scanner input3 = new Scanner(new File(csvName));
Scanner input4 = new Scanner(new File(csvName));
String csvline = getCsvLineVal (getLocation34CSV(getTag34Value(Tag34Location(getTagCSV( parseFixMsg(inputLine ,inputLine))), getValueCSV( parseFixMsg(inputLine ,inputLine))), getVal34(input1, input2)), getCSVLine( input3, input4) );
outputLine = compareClientFixCSV( getTagCSV( parseFixMsg(inputLine ,inputLine)), getValueCSV(parseFixMsg(inputLine ,inputLine)), getCSVTag(csvline), getCSVValue(csvline));
out.println(outputLine);
tfCSVLine.append(outputLine+"\n\n\n");
input1.close();
input2.close();
input3.close();
input4.close();
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
答案 0 :(得分:2)
我怀疑你的代码是在UI线程上处理的。 UI线程是更新和呈现屏幕的内容。当您在UI线程上运行while循环时,UI无法更新。忙于运行你的while循环。
答案是启动另一个线程来进行处理。然后,使用SwingWorker返回UI线程,并更新文本框。这是必要的,因为您不应该从UI线程更新UI对象。
这是一个tutorial to get you started。它将更彻底地解释这一点。
答案 1 :(得分:2)
更新UI应该在AWT线程中进行:
out.println(outputLine);
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
tfCSVLine.append(outputLine+"\n\n\n");
}
});