本地资源的 URI
在 Java 中,我可以为位于硬盘本地的文件创建 URI 吗?如果可以的话,应该如何构建呢?
In Java can I create a URI for a file located locally in the hard drive? If so, how should it be constructed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看文件文档:
文件有一个构造函数,它以 URI 作为参数,如果你想从现有文件中获取 URI,它还有方法
toURI()
。您可以尝试一下以了解应该如何完成这些事情。您还可以阅读URI(它不是一个java术语)。维基百科上有一个例子:
Look at File documentation:
File has a constructor, which takes URI as a parameter, and it also has method
toURI()
if you want to get URI from existing file. You can play with that to understand how the things should be done.You can also read about URI (it's not a java term). There is an example in Wikipedia:
如果您使用的是 Windows:
If you're using Windows:
尝试以下:
Try below: