Kandha
Kandha

Reputation: 3689

Write file on client system using applet

I want to write a file on client using applet. I have some it can write when we run the applet as separate from Java. But it can't write through browser by calling the applet function from javascript.

How can I write files on client system?

Upvotes: 0

Views: 929

Answers (1)

Andrew Thompson
Andrew Thompson

Reputation: 168825

Basically, there are two (practical) ways to write files to the client file system from an applet.

  1. A digitally signed, trusted applet.
  2. A Plug-In 2 applet that uses the JNLP API services.

Upvotes: 2

Related Questions