Save your life? By writing a bit of
Java code?
What do you have so far? Are you familiar with the java.io package? Look at the File, FileReader and BufferedReader classes in particular. The BufferedReader.readLine method will hand you a line of text from a file.
Also, where is this file - on the client or on the server? If the former, then the applet needs to be signed (see
HowCanAnAppletReadFilesOnTheLocalFileSystem); if the latter, then you need also need to look at the getResourceAsStream method and the InputStreamReader class.
So, quite a few things to look into. You better get cracking!
