gpt4 book ai didi

android从互联网下载apk文件导致解析错误

转载 作者:行者123 更新时间:2023-11-29 22:30:11 24 4
gpt4 key购买 nike

当我尝试使用以下代码下载文件并运行 apk 文件时,它总是导致“解析错误”。我一无所知。感谢您的帮助。

try
{
URL url = new URL("http://10.0.0.1/test.apk");
URLConnection conexion = url.openConnection();
conexion.connect();
int lenghtOfFile = conexion.getContentLength();
InputStream is=url.openStream();
FileOutputStream fos=new FileOutputStream("/flash/test.apk");
byte data[]=new byte[1024];
int count=0;
long total=0;
int progress=0;

while ((count=is.read(data)) != -1)
{
total += count;
int progress_temp = (int)total*100/lenghtOfFile;
if(progress_temp%10 == 0 && progress != progress_temp){
progress = progress_temp;
Log.v("APK Download", "total = "+progress);
// Log.v
}
fos.write(data, 0, count);
}

is.close();
fos.close();

Log.v("APK Download", "Download Done");



}catch (Exception e){}

最佳答案

上帝保佑!我很困惑,然后我仔细查看了上传到已损坏的网络服务器上的文件。如果我通过 FileZilla 上传它,它会损坏,如果我使用 cpanel 上传文件,它会很好用。感谢上帝,在花了几个小时解决这个问题后,我能够继续编码。 :)

关于android从互联网下载apk文件导致解析错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4329036/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com