使用 Java 获取 Internet 文件并将其创建为 File 对象?
可能的重复:
从 URLConnection 读取二进制文件
现在我有一个 URL:
(http://elsa.berkeley.edu/~saez/TabFig2005prel.xls 例如,使用 http: 方案)。
我需要访问此文件并将其将其存储为 File 对象在我的程序中,以便我可以完成以下工作。那么有人知道如何将其变成 File 对象吗?我不知道如何将输入流转换为文件。
谢谢 艾伦
Possible Duplicate:
Reading binary file from URLConnection
Now I have a URL:
(http://elsa.berkeley.edu/~saez/TabFig2005prel.xls for example, with http: scheme).
I need to access to this file and store it as a File object in my program so I can do my following work. So anyone knows how to make this to a File object? I have no idea how to covert a InputStream to a File.
Thank you
Allan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
样(http://commons.apache.org/io/)
使用 apache commons-io怎么 有一个
How about using apache commons-io (http://commons.apache.org/io/)
It has a
可以使用以下代码(假设InputStream对象名称为“content”)
You can use the following code (assuming the InputStream object name is "content")
伪代码:
瞧。您现在已将文件保存在本地。
pseudocode:
voila. You now have the file saved locally.