servlet 生成html
时间: 2023-10-07 10:13:28 浏览: 98
servlet制作网站
可以使用Java Servlet生成HTML页面。在Servlet中,可以使用Java代码动态地生成HTML标记,然后将其发送到客户端浏览器。以下是一个简单的示例Servlet,它生成一个包含标题和文本的HTML页面:
```java
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class MyServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head>");
out.println("<title>My HTML Page</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Welcome to my page!</h1>");
out.println("<p>This is some text.</p>");
out.println("</body>");
out.println("</html>");
}
}
```
在web.xml文件中配置Servlet,然后在浏览器中访问Servlet的URL,就可以看到生成的HTML页面了。
阅读全文