Java:写入 Windows 临时目录中的 tempFile
我想在几天内学习Java。我尝试将内容写入临时文件并将该文件保存在 Windows 中的临时文件夹中(这是我的任务)。 我找到了一些解决方案,但对我不起作用:(
http://www.mkyong。 com/java/如何将数据写入java中的临时文件/
http://www.roseindia.net/java/example /java/io/create-temp-file.shtml
有时,我在小程序上遇到错误,另一种方法是空页面,并且在任何地方都没有创建文件。
I am trying to learn Java in few day. I trying to write content to temp file and save this file in temp folder in Windows (that's my task).
I find some solution, but not work for me :(
http://www.mkyong.com/java/how-to-write-data-to-temporary-file-in-java/
http://www.roseindia.net/java/example/java/io/create-temp-file.shtml
Some time, i get error on applet, another way is empty page and file is not created, anywhere.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您提到了一个小程序,它们在沙箱中运行,并且无法访问本地文件系统。这就是为什么它不适合你。
这是另一个有关从小程序写入文件。
You mention an applet, these operate in a sandbox and will not have access to the local file system. That is why it is not working for you.
Here is another rose india link re writing to a file from an applet.
扩展保罗的回答。
使用小程序,您必须询问用户可以存储文件的位置。
此行为会阻止小程序自由访问已用硬盘。
To extend Paul answer.
Using applets you will have to ask user for location, where the file can be stored.
This behavior prevent applet free access to used hard disk.