我是android开发的新手。
我为自动下载器构建应用程序,
每次下载都可以正常工作并保存在我的 SD 卡上,但设备上没有打开 drm 文件。
我解释一下,我尝试下载扩展名为 dd\dm 的文件,如果常规浏览器下载 dd\dm 文件,设备会将它们解压缩为 dcf 扩展名。
我的应用程序没有这样做...我注意到如果我的设备重新启动,一切都是正确的,实际上设备将此文件的扩展名更改为 dcf,我可以播放这首歌,如果我没有发起者重新启动到设备,文件扩展名保留在 .dd.dm
mt 内容类型为:application/vnd.oma.drm.message
有人知道我需要怎么照顾吗??
这是我的代码......
class DownloadFileFromURL extends AsyncTask<String, String, String> {
/**
* Before starting background thread
* Show Progress Bar Dialog
* */
@Override
protected void onPreExecute() {
super.onPreExecute();
showDialog(progress_bar_type);
}
/**
* Downloading file in background thread
* */
@Override
protected String doInBackground(String... f_url) {
int count;
try {
URL url = new URL(f_url[0]);
URLConnection conection = url.openConnection();
conection.getContent();
conection.connect();
// getting file length
int lenghtOfFile = conection.getContentLength();
// Insert Information Of File to Array
getCurrentArray()[index].setSizeOfFile(OrangeFile.convertToStringRepresentation(lenghtOfFile));
getCurrentArray()[index].setMimeOfFile(conection.getContentType());
// input stream to read file - with 8k buffer
InputStream input = new BufferedInputStream(url.openStream(), 8192);
// Output stream to write file
OutputStream output = new FileOutputStream(mPath + getCurrentArray()[index].getNameOfFile() + "." + getCurrentArray()[index].getExtOfFile());
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
// publishing the progress....
// After this onProgressUpdate will be called
publishProgress(""+(int)((total*100)/lenghtOfFile));
// writing data to file
output.write(data, 0, count);
}
// flushing output
output.flush();
// closing streams
output.close();
input.close();
} catch (Exception e) {
Log.e("Error: ", e.getMessage());
}
return null;
}