当前位置: 代码迷 >> Android >> android下载文件的有关问题
  详细解决方案

android下载文件的有关问题

热度:73   发布时间:2016-05-01 21:41:31.0
android下载文件的问题
private InputStream getInputStreamFromUrl(String urlStr) throws IOException {
URL url = null;
url = new URL(urlStr);
HttpURLConnection urlConnection = null;
urlConnection = (HttpURLConnection)url.openConnection();

InputStream inputStream = urlConnection.getInputStream();//这一行返回值总是为空
return inputStream;
}

我在模拟器上添加一个下载按钮,用来下载mp3文件,可是在上面的代码中inputStream 总是为空,为什么?

------解决方案--------------------
首先你要在mainfest.xml里加入使用Internet的权限,注意格式不要设置错
然后检查url的可用性
------解决方案--------------------
探讨

首先你要在mainfest.xml里加入使用Internet的权限,注意格式不要设置错
然后检查url的可用性

------解决方案--------------------
你一句一句上log看看,是不是你的url的问题
  相关解决方案