设置System.in从JTextField中读(Setting System.in to read

2019-09-17 22:04发布

我如何更换寻找方向System.inInputStream直接从读取JTextField

到目前为止,我的方法已经几乎是摸着石头过河。 目前,我有;

JTextField input = new JTextField();

System.setIn(new InputStream() {
  int ptr = 0;
  @Override
  public int read() throws IOException {
     int c;
     try {
        c = input.getText().charAt(ptr);
     }
     catch (IndexOutOfBoundsException ioob) {
        return 0;
     }
     ptr++;
     return c;
  }
});

这给出了NoSuchElementException在尝试当输入是空的,我以为永远无法找到一个分隔符来阅读。

我错过了什么方法?

Answer 1:

好了,这是我用得到它正常工作的方法。 如果有人能改善这个答案然后随意。

final LinkedBlockingQueue<Character> sb = new LinkedBlockingQueue<Character>();

final JTextField t = new JTextField();
t.addKeyListener(new KeyListener() {
  @Override
  public void keyTyped(KeyEvent e) {
    sb.offer(e.getKeyChar());
  }
  ...
});

System.setIn(new BufferedInputStream(new InputStream() {
  @Override
  public int read() throws IOException {
    int c = -1;
    try {
      c = sb.take();            
    } catch(InterruptedException ie) {
    } 
    return c;           
  }
}));


Answer 2:

你看一半了,但是:

从的Javadoc

此方法将阻塞,直到输入数据可用,检测到流的末尾或者抛出异常。

http://docs.oracle.com/javase/1.4.2/docs/api/java/io/InputStream.html#read%28%29

所以,你的方法应该只是等待被按下的键。 无论是通过处理NoSuchElementException异常,或者检查很多(新?)字符是如何可用的KeyListener。

此InputStream的语义是从控制台一个不同的,所以你需要就如何处理编辑一些设计决策,而不仅仅是按键。



文章来源: Setting System.in to read from JTextField