如何通过客户端 Java 代码获取 Google Web Toolkit 中的当前 URL?
我正在尝试读取网址的查询参数 在客户端 Java 代码中,但我不知道如何在 Java 中查找当前 URL。
当我尝试按照 这个问题,它说无法解决,并且不提供添加导入语句。
我正在将 Google Web Toolkit 与 Google App Engine 结合使用。
I'm trying to read the query arguments of the URL in client side Java code, but I can't figure out how to find the current URL in Java.
When I tried using httpServletRequest
as recommended in this question, it says that it cannot be resolved and it doesn't offer adding an import statement.
I'm using Google Web Toolkit with Google App Engine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 窗口.地点:
有多种方法可以检索有关 URL 的信息,包括一种获取整个内容的方法 (
getHref()
) 或获取组成部分的方法(例如getProtocol()
),getHost()
、getHostName()
等)。既然您说要读取查询参数,那么您可能需要其中之一:
Look at Window.Location:
There are a number of methods to retrieve info about the URL, including one to get the whole thing (
getHref()
) or get the constituent components (e.g.getProtocol()
,getHost()
,getHostName()
, etc).Since you say you want to read the query arguments, you probably want one of these: