gpt4 book ai didi

java - 从 UI 读取时文件路径错误

转载 作者:行者123 更新时间:2023-12-01 11:52:04 24 4
gpt4 key购买 nike

我正在使用 Windows 构建器 swing UI 使用 Jfilechooser 从系统获取文件路径。当我从 Jfile 选择器中选择文件时,文件路径显示为 -

D:\Tool\BondTest2\xyz.properties

这就是为什么我的java代码无法读取文件,因为根据java语法文件文件应该像

D:\\Tool\\BondTest2\\xyz.properties

我写了下面的代码,但它不起作用-

String filePath = fileChooser.getSelectedFile().toString();
filePath = filePath.replaceAll(Pattern.quote("'\'"), "\\");
System.out.println("change path=" + filePath);

但它不起作用。请提出建议。

最佳答案

看起来你想要这样的东西,

String s = "D:\\Tool\\BondTest2\\xyz.properties";
System.out.println(s.replaceAll("\\\\", "\\\\\\\\"));

输出:

D:\\Tool\\BondTest2\\xyz.properties

关于java - 从 UI 读取时文件路径错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28718531/

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