本文介绍了Java中的查询字符串操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有人知道或者知道我可以用来操作查询字符串的java类?
Does anyone have, or know of, a java class that I can use to manipulate query strings?
基本上我想要一个我可以简单给出的课程查询字符串,然后删除,添加和修改查询字符串KVP。
Essentially I'd like a class that I can simply give a query string to and then delete, add and modify query string KVP's.
提前致谢。
编辑
在回答对此问题的评论时,查询字符串将如下所示;
In response to a comment made to this question, the query string will look something like this;
N=123+456+112&Ntt=koala&D=abc
所以我想把这个类传递给查询字符串并说出类似的内容;
So I'd like to pass this class the query string and say something like;
String[] N = queryStringClass.getParameter("N");
然后可能
queryStringClass.setParameter("N", N);
并且可能 queryStringClass.removeParameter(N);
或类似的东西。
推荐答案
SOmething像这样
SOmething like this
public static Map<String, String> getQueryMap(String query)
{
String[] params = query.split("&");
Map<String, String> map = new HashMap<String, String>();
for (String param : params)
{
String name = param.split("=")[0];
String value = param.split("=")[1];
map.put(name, value);
}
return map;
}
简单地迭代地图:
String query = url.getQuery();
Map<String, String> map = getQueryMap(query);
Set<String> keys = map.keySet();
for (String key : keys)
{
System.out.println("Name=" + key);
System.out.println("Value=" + map.get(key));
}
这篇关于Java中的查询字符串操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!