转载

是否有一种Java方法将参数集合编码为URL查询组件?

有没有广泛使用的Java库可以像 dojo.objectToQuery() 那样做什么?例如. (假设使用HttpCore的 HttpParams

对象,但任何键值映射都会这样做):

HttpParams params = new BasicHttpParams()
    .setParameter("foo", "bar")
    .setParameter("thud", "grunt");
UnknownLibrary.toQueryString(params);

应该产生“foo = bar& thud = grunt”.

我知道写起来并不难,但似乎应该已经写好了.我找不到它.

为什么重新发明轮子? Apache HttpClient 有URLEncodedUtils:
List<BasicNameValuePair> params = Arrays.asList(new BasicNameValuePair("//%^ &=@#:", "//%^ &=@#:"));
   String query = URLEncodedUtils.format(params, "UTF-8");

翻译自:https://stackoverflow.com/questions/1405731/is-there-a-java-method-that-encodes-a-collection-of-parameters-as-a-url-query-co

原文  https://codeday.me/bug/20190112/519102.html
正文到此结束
Loading...