【发布时间】:2020-06-16 08:22:26
【问题描述】:
我想在不使用 API 的情况下从 Dropbox 下载 APK。我有以下代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main2);
// Initialise the button
btn = (Button) findViewById(R.id.mybutton);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
new DownloadFilesTask().execute();
// Show Download confirmation
Toast confirmDownload = Toast.makeText(Main2Activity.this,"Download is complete",Toast.LENGTH_LONG);
confirmDownload.show();
}
});
}
/**
* Asynchronous Task Class
* Will invoke a new stream with which the apk is to be downloaded
*/
private static class DownloadFilesTask extends AsyncTask<Void, Void, Void> {
/**
* Concurrent process to download the file from the path provided
* @param voids Parameters of the method are not used
* @return Return value of the method is unimportant
*/
@Override
protected Void doInBackground(Void... voids) {
try{
URL download = new URL(pathToAPK);
ReadableByteChannel rbc= Channels.newChannel(download.openStream());
FileOutputStream fileOut = new FileOutputStream(dowloadPath+ "file.apk");
fileOut.getChannel().transferFrom(rbc, 0,1 << 24 );
fileOut.flush();
fileOut.close();
rbc.close();
}catch(Exception e){ e.printStackTrace(); }
return null;
}
文件下载成功,但是当我尝试打开文件时,我得到一个:
解析错误:解析包时出现问题
我的猜测是文件由于某种原因已损坏。有什么猜测吗?
【问题讨论】:
-
感谢您的想法,将 dl 更改为 1,并不能解决问题。请看下面
标签: java android parsing apk dropbox