Search:

Type: Posts; User: byrdman

Search: Search took 0.13 seconds.

  1. Re: JFileChooser save dialog box "access is denied" error

    the path exists

    line 340:
    PrintWriter roomfile = new PrintWriter(out);
  2. Re: JFileChooser save dialog box "access is denied" error

    like this?

    java.io.FileNotFoundException: C:\Users\James\Documents (Access is denied)
    at java.io.FileOutputStream.open(Native Method)
    at...
  3. Re: JFileChooser save dialog box "access is denied" error

    C:\Users\James\Documents (Access is denied)
  4. JFileChooser save dialog box "access is denied" error

    JFileChooser saver = new JFileChooser();
    saver.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
    if(saver.showSaveDialog(null) == JFileChooser.APPROVE_OPTION)
    {
    ...
Results 1 to 4 of 4