How to Clear all of the JList and JTextArea and text field t
How to Clear all of the JList and JTextArea and text field?
the Clear should clear everything in the GUI.
Solution
To clear Jtext Field use -field.setText (\"\");
To remove all items in Jlist use- ((DefaultListModel)1_storieslist.getModel()).clear();
To clear JTextArea use- Jtextarea.setztext(null);
You can also use -removeAll();
