Java 获取查询字符串
所以我试图捕获 getQueryString() 的某个部分。我知道我可以尝试遍历并解析字符串以获得我想要的特定部分,但希望能够抓住我需要的部分。
这是我的查询结果:
N=0&Ntk=General&Ntt=info&Nty=1&D=info&Ntx=mode+matchallpartial&Dx=mode+matchall
我只是想捕获这部分: Ntt=info
=info
部分将更改为搜索请求的任何内容。
我已经浏览了很多 API 请求功能,但没有找到任何适合我的功能。
我只需要解析它吗?
So i'm trying to capture a certian section of a getQueryString(). I know I could try and go through and parse the string to get the certain section I wanted but was hoping to just be able to grab the piece I need.
Here is my query result:
N=0&Ntk=General&Ntt=info&Nty=1&D=info&Ntx=mode+matchallpartial&Dx=mode+matchall
I'm looking just to capture this part: Ntt=info
The =info
part will change to whatever the search requested was.
I have gone through a lot of the API request function and haven't found anything that works for me.
Am I just going to have to parse it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ServletRequest.getParameter
如果没有设置参数,则返回null。
Use
ServletRequest.getParameter
It will return null if the parameter isn't set.