我正在创建一个使用管道输入/输出流的Java应用程序(带有一个Object输入/输出流包装器)。在发送数据时我得到了相当大的延迟,并认为这是因为我最初的数据大小。但是,以下演示显示了在不同线程上进行通信时管道输入/输出流的本机延迟。
public class Main{
public static long millis = 0;
public static void main(String[] args) throws Exception {
JFrame frame = new JFrame();
JButton button = new JButton("Press me");
frame.getContentPane().add(button);
frame.setSize(new Dimension(500, 500));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
PipedInputStream pis = new PipedInputStream();
PipedOutputStream pos = new PipedOutputStream(pis);
button.addActionListener(e -> {
try {
pos.write((int) (Math.random() * 1000));
//records time the packet was sent
millis = System.currentTimeMillis();
} catch (IOException e1) {
e1.printStackTrace();
}
});
while (true) {
System.out
.println("recieved: " + pis.read() + "\n\tin time (ms): " + (System.currentTimeMillis() - millis));
}
}
}
对我来说,这种延迟通常在300-900毫秒左右。这在我的应用程序中非常重要。我想知道为什么这么大的延迟?我如何修复我的代码以减少延迟?
提前谢谢。
答案 0 :(得分:2)