Java 获取查询字符串

发布于 2024-09-08 12:07:37 字数 373 浏览 2 评论 0原文

所以我试图捕获 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

原来是傀儡 2024-09-15 12:07:37

使用 ServletRequest.getParameter

req.getParameter('Ntt');

如果没有设置参数,则返回null。

Use ServletRequest.getParameter

req.getParameter('Ntt');

It will return null if the parameter isn't set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文