------=_NextPart_000_001B_01BE11FF.75DCF460
Content-Type: text/plain;
charset="big5"
Content-Transfer-Encoding: quoted-printable
Q1:
I can read data from server site by using method openStream of class =
URL, but as I try to write data back to server site by using such method =
described below, I received error such like "not supported service" with =
exception "java.net.UnknownServiceException". How can I write data back =
to server site? (PS: These all run as Applet, not Application)
....
URL url =3D getClass().getResource("xxx.xxx");
URLConnection urlConnection =3D url.openConnection();
DataOutputStream out =3D new =
DataOutputStream(urlConnection.getOutputStream());
out.writeUTF("abcdefg");
out.flush();
....
Q2:
Normally, Applet can't write or even read data in client site, but I =
heard about that signed applet can freely access data in client site. =
After I read about the document about signed applet, I still can't =
understand how to do? Would you please send an example about "how to =
do"?
------=_NextPart_000_001B_01BE11FF.75DCF460
Content-Type: text/html;
charset="big5"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">