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.
我正在创建一个 android 应用程序,它是 *.apk(.apk 是创建后文件的扩展名)文件并将该文件上传到服务器.. 将该文件从服务器下载到我的手机后,我得到 *.htm (.htm是下载后文件的扩展名)为什么?
最终得到了解决方案:
把它放在我的 apache/mime.types 中:
application/vnd.android.package-archive apk
如果您使用的是 python,您可以将此行放在 settings.py 中:-
import mimetypes mimetypes.add_type("application/vnd.android.package-archive",".apk", True)