0

我的循环有问题。在我的项目中,我通过套接字发送来自 match 的评论。我知道我的一个循环有问题,因为在客户端最后的评论仍然被打印。

        PrintWriter out = new PrintWriter(socket.getOutputStream(), true);

        while(true){
        out.println(rel.getCommentary());

        }

getCommentary 是一个带有来自 JTextField 的当前评论的方法

客户端循环

        in = new Scanner(socket.getInputStream());          
        while(in.hasNextLine()){
            showCommentary(in.nextLine());
        }

服务器图形用户界面

public void actionPerformed(ActionEvent e) {

        Object source = e.getSource();

        if(source == addComment){

            String comment=commentField.getText();
            rel.setCommentaryText(comment);  
            panel4.setBackground(Color.green);

        }

客户

private void showCommentary(String text){
    showArea.append(text+ "\n");
    showArea.setCaretPosition(showArea.getDocument().getLength());
}

关系类

public class Relation{

    String relation;

    public Relation() {

    }

     public void setCommentaryText(String relation){
         this.relation= relation;
     }

    public String getCommentary(){
        return this.relation;
    }

}
4

1 回答 1

0

好吧,在 中Server,您应该有一个打印评论的方法:

public void printCommentary(String commentary) {
    out.println(commentary);
}

ServerGUI中,当您设置评论时:

if (source == addComment) {
    String comment= commentField.getText();
    //call the server's print method we just wrote, only once, no loop!
    server.printCommentary(comment);
}

您的错误是while(true)循环一直在执行。它永远打印到输出流您的最后一条评论。你不应该那样做。

于 2013-06-15T11:01:38.270 回答