urls,applet

I am going to embed my painting into an applet. Because it invokes with File I/O in client side.

I don't want to use signed applet skills. Can I use URLs?

Thanks

[181 byte] By [ardmorea] at [2007-11-27 11:26:14]
# 1

Why would you need File IO on the client side to display your

painting in your applet?

TuringPesta at 2007-7-29 16:09:14 > top of Java-index,Java Essentials,New To Java...
# 2

I extract data file to get x and y coordinates to plot polygons then embed it into html. now I need help.

ardmorea at 2007-7-29 16:09:14 > top of Java-index,Java Essentials,New To Java...
# 3

> I don't want to use signed applet skills. Can I use URLs?

Not without using "signed applet skills".

http://java.sun.com/sfaq/

~

yawmarka at 2007-7-29 16:09:14 > top of Java-index,Java Essentials,New To Java...
# 4

A guy tell me I can use URLs. But URLs can access server side file, how about client side file?

ardmorea at 2007-7-29 16:09:14 > top of Java-index,Java Essentials,New To Java...
# 5

> A guy tell me I can use URLs. But URLs can access

> server side file, how about client side file?

You can use a URL to connect to the originating server without the need for signing your applet, but -- to repeat -- client-side acces to the file system requires extra permission whether you're using path names or URLs.

Please read the link I posted.

~

yawmarka at 2007-7-29 16:09:14 > top of Java-index,Java Essentials,New To Java...