| Author |
Write a file to filesystem
|
Ricardo Queiros
Greenhorn
Joined: Aug 02, 2011
Posts: 2
|
|
Hi,
How can I save a file on the client's file system using a JWS application without have to launch the saveFileDialog method of the javax.jnlp.FileSaveService class?
Best regards
|
 |
Alexander Kober
Ranch Hand
Joined: Aug 05, 2011
Posts: 32
|
|
In order to access the file system (for read or for writes does not matter) without the JWS Services you need to ask for full permissions when starting the application. You can do that by adding <all-permissions/> to the security section of your JNLP file (note, however, that your classes have to be signed for this).
Unfortunately, there is no finer-grained security concept for Java Webstart. You can either have no permission at all, forcing you to use the services for everything, or request all permissions even if you don't really need them.
|
 |
 |
|
|
subject: Write a file to filesystem
|
|
|