1
以下是我的java代碼:如何將控制檯輸出打印到JTextArea?
有人可以請建議如何打印相同的JTextArea
?
DBCursor cursor = coll.find();
int i=1;
while (cursor.hasNext())
{
System.out.println("Inserted Document: "+i);
System.out.println(cursor.next()); // i want to print this into jtextarea
i++;
}
我想用[這個答案]關閉此問題(http://stackoverflow.com/questions/12945537/how-to-set-output-stream-to-textarea/12945678#12945678),但那可能會因爲你的需要而有點過度殺人 – MadProgrammer