Java fileinputstream 与 url 一起使用
如何在fileinputstream中输入一个文件的url?
我在 Fileinputstream 中输入 url,但 URL 的输出是错误的,因为链接斜杠向后翻转,如 - 从 / 到 \ ,而双斜杠 // 是 \ 只有一个斜杠并向后翻转。有没有办法fileinputstream 可以做到这一点吗?如果不是,你能告诉我应该使用什么来代替 fileinputstream 吗?
How to input in the fileinputstream, a file to url?
I enter the url in the Fileinputstream, but the output of the URL is wrong, because the link slashes are turned backwards like - from / to \ and the double slashes // are \ only one slash and backwards.Is there a way with the fileinputstream to do that ? If it isn't, can you tell me what should I use instead of fileinputstream?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想获取
InputStream
从 URL 检索数据,然后使用URL.openStream
方法将返回一个InputStream
,它可以像任何其他InputStream
一样使用。例如,
If you want to obtain an
InputStream
to retrieve data from a URL, then using theURL.openStream
method will return anInputStream
, which can be used like any otherInputStream
.For example,
FileInputStream 可以使用路径名或文件对象进行初始化。
如果提供路径名,您只需将任何反斜杠转换为双反斜杠\
FileInputStream can be initialized with either a path name or a file object.
If supplying a path name you should only need to convert any back slashes \ to double backslashes \