作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从服务器下载 mp3 文件。成功制作,可以播放文件,但是没有缩略图和文件信息,比如艺术家和专辑名称。
当我直接从 chrome 下载文件时,我上面提到的信息确实会被下载。有什么想法可以让它发挥作用吗?
这是我的代码:
URL url = new URL(urlDwn+urlVid);
HttpURLConnection connection =(HttpURLConnection) url.openConnection();
connection.connect();
//file length
int lengthOfFile = connection.getContentLength();
//intput - read file
InputStream inputStream = new BufferedInputStream(url.openStream(), 8192);
//output - write file
if(true) {
System.out.println("Downloading");
OutputStream outputStream = new FileOutputStream(root+"/"+fileName);
System.out.println(root+"/"+fileName);
byte data[] = new byte[1024];
long total = 0;
while ((count = inputStream.read(data)) != -1) {
total += count;
//progress
publishProgress((int) ((total * 100) / lengthOfFile));
//writing to file
outputStream.write(data,0, count);
}
outputStream.flush();
outputStream.close();
inputStream.close();
最佳答案
我解决了!
缩略图和 mp3 标签(艺术家等)似乎已正确下载。问题出在文件管理器本身(或者可能是 Android 系统),所以当我重新启动设备时,它自己显示出来了!
编辑
无需重启。您需要做的就是将下面的行添加到 onPostExecute 方法,它会告诉系统已添加新文件。
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
intent.setData(Uri.fromFile(file));
sendBroadcast(intent);
关于java - Android AsyncTask 下载 .mp3 文件 - 信息和缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44947612/
我有一个具有可变数量子元素的固定大小的 div。我不知道 children 的大小。目标是缩小它们以适合父级。 例子: .parent { width: 100px; height: 100p
我是一名优秀的程序员,十分优秀!