Ok, I have a fairly simple question. I need to figure out a way to, from an embedded applet, append to a text document in the same location as the applet (online server).
Now, in order to communicate with the files on the server, I need to use Streams. The problem is the only OutputStream I can find that supports appending is FileOutputStream. I cannot use FileOutputStream since it requires me to send it a File and all I have is a URL and a URLConnection.
I have no idea what to do. Does anyone have any suggestions for me?