Java 文件操作
因此,我有一个带有 JFileChooser 的应用程序,我可以从中选择要读取的文件。然后我更改一些单词并编写一个新文件。我遇到的问题是,当我编写新文件时,它会保存在项目目录中。如何将其保存在与我使用 JFileChooser 选择的文件相同的目录中。注意:我不想使用 JFileChooser 来选择位置。我只需要将文件保存在与我读取的原始文件相同的目录中。
So I have an application with a JFileChooser from which I select a file to read. Then I change some words and write a new file. The problem that I am having is that when I write the new file it's saved in the project directory. How do I save it in the same directory as the file that I chose using the JFileChooser. Note: I don't want to use the JFileChooser to choose the location. I just need to save the file in the same directory as the original file that I read.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您选择这样的文件:
然后读取并更改内容,并使用不同的名称将其写回到同一位置:
You choose a file like this:
Then you read and change the content and write it back to the same location with a different name: