Q. this is rather a CGI question
Well, though this probablly have to do with the CGI or form, but let me post my question here anyway.
I'd like to know the way I can create the webpage that will allow user to upload the picture or any binary data through some kind of form where I can specify the local file name.
Also, here is my fandamental question about the Java, but when I use the file accessing functions in java, does it access to the client local hard drive, or the server's file system or which? Or can Java access to both?
soichi
------------------------------
i am a beginner, and am the one who will be greately appriciated with any type of help.
Re: Q. this is rather a CGI question
soichi,
If you write it as an applet, you can call up a file selection dialog, which will let the user select a file on their machine,
then you can read it in, serialize it, and send it across to the server who would then unserialize it and save it to a file on
the server.
I hope this helps