Hi!
On Mon, 26 Apr 1999 Stuart McLean wrote:
>Michael Holst wrote:
>>
>> Hello,
>>
>> I'm not a Java newbie, but I am not too familiar with the networking
>> classes of our dear "write once, run anywhere" language.
>> The problem is the following, I need to let an applet write a file to a
>> sp
Michael Holst wrote:
>
> Hello,
>
> I'm not a Java newbie, but I am not too familiar with the networking
> classes of our dear "write once, run anywhere" language.
> The problem is the following, I need to let an applet write a file to a
> specified http address in order for it to work correctly
You would need to have the Java code call a cgi script or servlet that resides
on the remote host. The cgi or servlet could then write to its local machine.
You are correct about the java.io.*. You would need to use the java.net.* api.
to run the script.
Michael Holst wrote:
> Hello,
>
> I'm no
Hello,
I'm not a Java newbie, but I am not too familiar with the networking
classes of our dear "write once, run anywhere" language.
The problem is the following, I need to let an applet write a file to a
specified http address in order for it to work correctly. How do I
acomplish this? If I am c