Tell me how you can display many lines in jTextArea2
for (int i = 0; i < 10; i++) { jTextArea2.setText(new String( new char[] {a[i]})); }
Tell me how you can display many lines in jTextArea2
for (int i = 0; i < 10; i++) { jTextArea2.setText(new String( new char[] {a[i]})); }
Source: https://ru.stackoverflow.com/questions/103461/
All Articles