使用 RandomAccessFile 创建文件时出现 java.io.FileNotFoundException
当我尝试使用 RandomAccessFile 创建文件时遇到 FileNotFoundException:
RandomAccessFile file = new RandomAccessFile("/test.jpg", "rw");
我现在不知道如何解决这个问题。这让我抓狂。
谢谢
I'm encountering a FileNotFoundException when I try to make a file using RandomAccessFile:
RandomAccessFile file = new RandomAccessFile("/test.jpg", "rw");
I don't now how to get around this. It's driving me nuts.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
Try
从文档中:
您是否可以通过其他方式创建这样的文件?您是否在“/”表示根目录的环境中工作?
From the documentation:
Are you able to create such a file by other means? Are you working in an environment where "/" denotes the root directory?
实际上,当我们只给出文件名时,就会发生此错误,
例如:
给出整个目录的路径,例如
Actually this error occurs when we only give the file name
for example:
Give the Path of whole Directory, for example