本文介绍了在Java中解析Accept-Language标头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请求中的accept-language标头通常是一个很长的复杂字符串 -

The accept-language header in request is usually a long complex string -

例如。

Accept-Language : en-ca,en;q=0.8,en-us;q=0.6,de-de;q=0.4,de;q=0.2

有没有一种简单的方法可以在java中解析它?或者帮助我这样做的API?

Is there a simple way to parse it in java? Or a API to help me do that?

推荐答案

我建议使用让容器解析Accept-Language而不是试图自己管理复杂性。

I would suggest using ServletRequest.getLocales() to let the container parse Accept-Language rather than trying to manage the complexity yourself.

这篇关于在Java中解析Accept-Language标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 08:30