Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让 JFileChooser 以 Java 可以打开文件的格式返回文件路径?
.getPath() 返回带有 \ 的路径(在 Windows 上),但我希望它返回带有 / 的路径这可能吗?
问候 Ra1ningSn0w
的方法getSelectedFile()将JFileChooser返回一个File足以打开文件的对象。如果你不想打开这个文件,而只是返回它的路径,你可以调用File's 方法getAbsolutePath()。它将以取决于操作系统的形式返回文件路径。
getSelectedFile()
JFileChooser
File
getAbsolutePath()
要获取路径使用(fc是JFileChooser对象):
fc
String path = fc.getSelectedFile().getAbsolutePath().replace('\\', '/');