Java Web Start Application can read files from local systems, but not write [closed]
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 months ago . please ask if you need more info. I have the security and all permissions tags in my jnlp, and when I run my java app offline it works correctly. File T = new File(System.getProperty("user.home") + File.separator + ".myapp/");<br /> if(!T.exists()) T.mkdirs(); File[] temp=new File[2]; temp[0] = new File(System.getProperty("user.home") + File.separator + ".myapp"+File.separator+"temp1.txt"); temp[1] = new File