如何根据文件判断MIME类型是什么?

发布于 2024-10-07 03:05:57 字数 135 浏览 2 评论 0原文

是否有任何优雅的方法(不仅仅是 if ("fileExt".compareTo(".mp3")) {MIME_TYPE = "audio/*"})以编程方式学习应放入的 MIME 类型我必须打开文件的意图?

谢谢!

Is there any elegant way (not just if ("fileExt".compareTo(".mp3")) {MIME_TYPE = "audio/*"}) to learn programatically the MIME type that should be put into an intent, with which I have to open the file?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蝶…霜飞 2024-10-14 03:05:57

好吧,它与您的 if 语句相同,但稍微更优雅

使用 MimeTypeMap 类

http ://developer.android.com/reference/android/webkit/MimeTypeMap.html

well it does the same as your if statement but is slightly more elegant

Use the MimeTypeMap class

http://developer.android.com/reference/android/webkit/MimeTypeMap.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文