我正在尝试为某些软件创建类似功能的控制台。我的输出格式符合我的要求,但仅用于使用System.out.println的控制台输出。我想在jtextarea中获取某种形式的文本。我尝试过使用。setText()
和.append()
,但两者都没有幸运。我想知道是否有人可以帮助我找出它为什么不起作用?我的应用程序使用2种形式,任何帮助都一如既往地受到赞赏..
Form2 f2 = new Form2();
f2.openMe(comboOne.getSelectedItem().toString());
form2代码如下:
public void openMe(String message) {
System.out.println("Console Output");
System.out.println("---------------------------");
System.out.println("Printer selected: "+ message);
System.out.println("\n");
//ta.setText(message);
ta.append("hi");
}