Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当有版本更新时,我会从服务器获取 apk 文件,这个 apk 文件有时会下载损坏。当我尝试安装文件时,这会导致解析错误是否有任何方法可以确保文件是 apk 文件在运行之前没有损坏。
我检查 ( (apkFile!=null) && (apkFile.exists()) )了大小,但仍有例外
( (apkFile!=null) && (apkFile.exists()) )
由于您知道有一个新文件,因此在该通知中包含 apk 文件的 md5。下载后获取下载的 apk 的 md5 并与预期进行比较。如果它们不同,那么您的下载已损坏。