Android URL FileNotFoundException错误

时间:2011-04-17 23:02:12

标签: android url inputstream

我正试图从互联网上获取一个文件并遇到一些错误。如果我在链接前面有http://它会抛出一个UnkownHostException,但是如果我删除了http://它会给我一个未找到协议的错误。

我的网址连接代码是

String urlS = "http://www.google.com/robots.txt";

URL url = new URL(urlS);

InputStream is = url.openStream();

任何帮助谢谢

1 个答案:

答案 0 :(得分:0)

有点偏离主题,但是:

您可能希望远离url.openStream();它可以挂起,因为没有超时吗? url openstream might leaving you hanging

您可能想要使用Apache HttpClient。