我正在尝试从文件中获取文件路径并将文件路径保存在文件中并回调它,以作为邮件附件发送。
File file = fc.getSelectedFile();
String source = file.getAbsolutePath();
println(source);
但输出将是这样的
C:\Documents and Settings\TheFile.txt
但我正在寻找一种方法来获取来源
C:\\Documents and Settings\\TheFile.txt
有什么方法可以转换吗?感谢帮助!