在Servlet.java中显示链接

时间:2014-04-15 01:18:00

标签: java

我正在使用Eclipse IDE,使用动态Web项目。我创建了一个Servlet,HelloServlet.java和一个index.jsp文件。

我需要在JSP文件中显示一个链接。我尝试过以下方法:

request.getWriter().println("<a href='http://localhost:8080/WebApp-01/'> Test </a>");

然而,没有任何东西产生。如何在JSP文件中生成链接?

1 个答案:

答案 0 :(得分:0)

您正在写入Request对象而不是响应对象。你可能想试试这个:

 response.setContentType("text/html");
 PrintWriter out = response.getWriter();

 out.println("<a href='http://localhost:8080/WebApp-01/'> Test </a>");