gpt4 book ai didi

java - 为什么 UriInfo.getQueryParameters() 不解码 '+' ?

转载 作者:行者123 更新时间:2023-11-30 11:04:58 25 4
gpt4 key购买 nike

我知道我可以解决这个问题,但与将参数从参数映射(应根据 javadoc 解码)中拉出相比,如果使用带注释的查询参数,行为会有所不同,这似乎很奇怪。这是一个错误,还是一个怪癖?

@GET
@Path("/")
@Produces(MediaType.APPLICATION_JSON)
public Response getAssets(@Context UriInfo info, @QueryParam("q") String searchQuery) {

// The request URI is http://myhost.com/appRoot?q=foo+bar%20baz
// At this point seachQuery="foo bar baz"
// The + has been decoded (along with any % encoded characters)

// Here searchQuery2="foo+bar baz", the '+' has not been decoded
// but the %20 has been
MultivaluedMap<String, String> params = info.getQueryParameters();
String searchQuery2 = params.get("q").get(0);

最佳答案

根据 UrlInfo.getQueryParameters 的 Javadocs只有“参数名称和值中的转义八位字节序列被解码”。

另一方面,QueryParam Javadocs 声明“值是URL 解码,除非使用 Encoded 注释禁用它”。

所以,回答您的问题,它看起来像是一个规范决定。

无论如何,也许你应该在 JAX-RS mailing lists 上提出这个讨论.

关于java - 为什么 UriInfo.getQueryParameters() 不解码 '+' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29824160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com