gpt4 book ai didi

java - 如何存储 FileChooser 的完整目录

转载 作者:行者123 更新时间:2023-12-01 22:30:35 26 4
gpt4 key购买 nike

我正在尝试制作一个程序来存储您选择的文件夹的路径。问题是,当我尝试存储字符串的路径时,它不存储完整目录。

如果我选择“C:\Users\n\Documents\English”,它将存储“C:\Users\n\Documents\”

如何存储完整的目录?

int result  = fileChooser.showSaveDialog(null);
if (result == JFileChooser.APPROVE_OPTION) {
path = fileChooser.getCurrentDirectory().toString().replace('\\', '/') + "/";
textArea.append(path);
}

最佳答案

fileChooser.getSelectedFile().getAbsolutePath()

关于java - 如何存储 FileChooser 的完整目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27852738/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com