In the future Swing related questions should be posted in the Swing forum.
> I want to load a text file into a jlist.
[url http://java.sun.com/docs/books/tutorial/uiswing/components/list.html]How to Use Lists[/url]. Read the file one line at a time and at the data to the ListModel.
> I also want a function to save whatever in that jlist to a text file.
Read each item in the ListModel and write it to a file.