0

我正在构建一个网页游戏,也使用 Java servlet - 使用 TomCat 在本地运行它。主页网址是:localhost:8080/index.html/

每当我尝试移动到其他 servlet\page 时,路径都是:localhost:8080/index.html/inGame.html 好像index.html是一个文件夹。

我该如何解决?非常感谢!

4

1 回答 1

0

我认为你的代码应该是这样的

RequestDispatcher a = request.getRequestDispatcher("其他 servlet url/映射");

a.forward(请求,响应);

于 2013-09-21T19:24:25.677 回答