Interface/enum listing standard mime-type constants

前端 未结 11 1992
-上瘾入骨i
-上瘾入骨i 2020-12-13 11:35

I am looking among the standard libraries (like apache commons, jax, jboss, javax) for an interface or enum that lists the values of all the standard mime-type (aka content-

11条回答
  •  伪装坚强ぢ
    2020-12-13 12:02

    If you are using Spring Framework then there is a MediaType class for common content types:

    MediaType.TEXT_HTML 
    MediaType.TEXT_PLAIN 
    MediaType.TEXT_XML 
    MediaType.APPLICATION_JSON 
    MediaType.IMAGE_JPEG 
    ...
    

提交回复
热议问题