Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6987233

FileDialog.getDirectory() should add a trainling slash when GTK FileDialog is used

XMLWordPrintable

    • b114
    • generic
    • generic
    • Verified

      The AWT FileDialog used to add the trailing slash to the directory name as returned by its getDirectory() method. This works fine on Windows, and on X11.

      Recently the GTK FileDialog has been implemented on X11 which is activated if GTK libraries are present on the system. This native dialog seems to return the directory name w/o a trailing slash.

      The presence of the trailing slahs isn't specified in the FileDialog.getDirectory() method. So, the correct code to use this method would be like:

         String filename = new File(dirpath, filename).getPath();

      which would work always. However, there are applications that rely on the presence of the slash, and use an incorrect technique like this:

         String filename = new String(fd.getDirectory() + fd.getFile());

      Due to the recent integration of the GTK file dialog this code starts to fail.

      Even though such code is considered incorrect, and the presence of the slash isn't specified, we want to preserve behavioral compatibility in this case. Therefore, we need to add the slash manually in case of GTK file dialog.

            anthony Anthony Petrov (Inactive)
            anthony Anthony Petrov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: