Java 中有 MIME 类型的枚举吗?

发布于 2024-12-11 18:29:13 字数 270 浏览 2 评论 0原文

可能的重复:
接口/枚举列出标准 mime 类型常量

是否有枚举 (或类似的东西),它保存最常见的 MIME 类型的常量?

我想处理一些常量,而不是到处触发字符串。

Possible Duplicate:
Interface/enum listing standard mime-type constants

Is there an enum (or something similar) which holds constants for the most common MIME types?

I'd like to deal with some constants rather than firing Strings here and there.

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

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

发布评论

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

评论(3

镜花水月 2024-12-18 18:29:13

据我所知,JDK 中没有一个。但是您可以从此类开始。

编辑:

现在我认为有一个更好的选择。使用 Guava 的 MediaType是一个被维护的类。

There is not one in the JDK that I am aware of. But there is this class that you can probably start with.

Edit:

Now there is a better option I think. Using Guava's MediaType is a class that is maintained.

莫言歌 2024-12-18 18:29:13

不能有枚举,因为没有可能值的封闭集。

一些框架提供了包含字符串列表的便捷类。例如,JAX-RS (jsr311) 规范提供了一个类 javax.ws.rs.core.MediaType。

There cannot be an enum, since there is no closed set of possible values.

Several frameworks provide convenient classes that contain list of Strings. For example JAX-RS (jsr311) spec provides a class javax.ws.rs.core.MediaType.

月下凄凉 2024-12-18 18:29:13

Java 将一些 MIME 类型存储在 DataFlavor 中。

Java stores some MIME types in DataFlavor.

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