您好 是否可以在JPanel中绘制java控制台返回的内容? 你有一个教程要遵循? 谢谢 SW
答案 0 :(得分:6)
我不记得我在哪里找到了这个,但是我已经使用类I调用TextAreaOutputStream将输出流输出到JPanel中保存的JTextArea:
import java.io.IOException;
import java.io.OutputStream;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
public class TextAreaOutputStream extends OutputStream {
private final JTextArea textArea;
private final StringBuilder sb = new StringBuilder();
private String title;
public TextAreaOutputStream(final JTextArea textArea, String title) {
this.textArea = textArea;
this.title = title;
sb.append(title + "> ");
}
@Override
public void flush() {
}
@Override
public void close() {
}
@Override
public void write(int b) throws IOException {
if (b == '\r')
return;
if (b == '\n') {
final String text = sb.toString() + "\n";
SwingUtilities.invokeLater(new Runnable() {
public void run() {
textArea.append(text);
}
});
sb.setLength(0);
sb.append(title).append("> ");
}
sb.append((char) b);
}
}
然后我将标准输出Stream重定向到此对象,正如Alex在上面的回答中提到的那样。
答案 1 :(得分:2)
首先从控制台读取。为此,请使用System.setOut()。使用ByteOutputStream,写入并从中读取。您将获得程序打印到系统的内容。现在使用TextArea或JScrollPane来呈现文本。
答案 2 :(得分:2)
创建FilterOutputStream的子类以将所有内容回显到JTextArea。
class Echo extends FilterOutputStream {
private final JTextArea text;
public Echo(OutputStream out, JTextArea text) {
super(out);
if (text == null) throw new IllegalArgumentException("null text");
this.text = text;
}
@Override
public void write(int b) throws IOException {
super.write(b);
text.append(Character.toString((char) b));
// scroll to end?
}
// overwrite the other write methods for better performance
}
并替换标准输出:
JTextArea text = new JTextArea();
System.setOut(new PrintStream(new Echo(System.out, text)));
答案 3 :(得分:2)
Message Console提供了一些您可能感兴趣的选项。