如何在没有JFileChooser的情况下获取所选文件夹的路径?

时间:2014-01-11 12:28:17

标签: java file path

是否可以在Windows中获取所选文件夹的路径而不使用JFileChooser,例如: -

我点击我的文档文件夹,然后获取我的文档文件夹的路径

1 个答案:

答案 0 :(得分:-1)

String FolderLocation = new File(folderLocation).getAbsolutePath();

这将在字符串FolderLocation中返回字符串folderLocation中指定的文件夹/文件的完整路径。例如: “C:\用户*用户* \文件”