使用 JFileChooser 保存对话框保存文件
我编写了一个 Java 程序,可以使用 JFileChooser 打开所有类型的文件。然后我想使用 JFileChooser 保存对话框将其保存在另一个目录中,但它只保存一个空文件。我可以做什么来保存部分?
谢谢。
I have written a Java program that opens all kind of files with a JFileChooser. Then I want to save it in another directory with the JFileChooser save dialog, but it only saves an empty file. What can I do for saving part?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JFileChooser 仅返回 File 对象,您必须打开 FileWriter 并将内容实际写入其中。
例如
编辑:
假设您只有一个源文件和目标文件,并且想要在两者之间复制内容,我建议使用类似 FileUtils 来自 Apache 的 Commons IO 来完成繁重的工作。
例如
完成!
JFileChooser just returns the File object, you'll have to open a FileWriter and actually write the contents to it.
E.g.
Edit:
Assuming that you simply have a source file and destination file and want to copy the contents between the two, I'd recommend using something like FileUtils from Apache's Commons IO to do the heavy lifting.
E.g.
Done!
除了 Kris 的回答 - 我猜,你还没有读取文件的内容。基本上,您必须执行以下操作才能使用 java 和 JFileChooser 复制文件: 使用
文件打开对话框不会将文件内容读入内存 - 它只是返回一个代表该文件的对象。
Just in addition to Kris' answer - I guess, you didn't read the contents of the file yet. Basically you have to do the following to copy a file with java and using JFileChooser:
The File Open Dialog does not read the contents of the file into memory - it just returns an object, that represents the file.
类似的东西..
Something like..