本文介绍了哪些Java库执行HTTP Accept Header解析?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

哪些Java库解析HTTP 接受标题?

Which Java libraries parse HTTP Accept header?

推荐答案

有看一下HttpClient 方法。

Have a look at the HttpClient Util.parseHeader method.

编辑(试图让这个答案值得在事后接受)

(trying to make this answer worth being accepted post-factum)

spring框架在其组件。

The spring framework provides this functionality within its MediaType component.

如果您已经在使用Spring MVC,您只需要求 @RequestHeader -annotated类型 HttpHeaders 的参数,只需调用。

If you are already using Spring MVC you can simply request for a @RequestHeader-annotated parameter of type HttpHeaders and access the list of accepted media types by simply calling HttpHeaders.getAccept().

这篇关于哪些Java库执行HTTP Accept Header解析?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-18 18:34
查看更多