Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/339.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/gwt/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java GWT。获取初始POST参数_Java_Gwt - Fatal编程技术网

Java GWT。获取初始POST参数

Java GWT。获取初始POST参数,java,gwt,Java,Gwt,我的应用程序由另一个应用程序启动,启动时必须获取POST参数。我读到我可以使用Window.Location.getParameter获取参数。但我需要从请求中获取POST参数。如何实施 getParameter()中的“get”表示“retrieve”,这是getter的标准Java命名约定;它与HTTP请求方法无关。这意味着使用方法getParameter()我还可以检索POST参数?不,因为该方法仅用于URL参数,所以您无法访问GWT中的POST参数。

我的应用程序由另一个应用程序启动,启动时必须获取POST参数。我读到我可以使用
Window.Location.getParameter
获取参数。但我需要从请求中获取POST参数。如何实施

getParameter()中的“get”表示“retrieve”,这是getter的标准Java命名约定;它与HTTP请求方法无关。

这意味着使用方法getParameter()我还可以检索POST参数?不,因为该方法仅用于URL参数,所以您无法访问GWT中的POST参数。