In fact I have a servlet. I know that a servlet can easily output html. But in my case I want the sevlet to create a html file instead of outputing html content throuth the browser.
Here I have a simple servlet generated by Netbeans IDE. how can I get this servlet to produce an HTML file instead
of simply printing html content to the browser?
the reason is that I want to post the html file back to a GUI applicaton which will display it using a htmlPane or similar. If I was going to make the html content available for viewing that would available to the whole public, isn't it?
Thanks in advance
Mimo
import java.io.*;
import java.net.*;
import javax.servlet.*;
import javax.servlet.http.*;
/**
*
*
* @version
*/
public class htmlServlet extends HttpServlet {
/** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
* @param request servlet request
* @param response servlet response
*/
protected void processRequest(HttpServlet
Request request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("t
ext/html;c
harset=UTF
-8");
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head>");
out.println("<title>Servle
t htmlServlet</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Servlet htmlServlet at " + request.getContextPath () + "</h1>");
out.println("</body>");
out.println("</html>");
out.close();
}
// <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
/** Handles the HTTP <code>GET</code> method.
* @param request servlet request
* @param response servlet response
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/** Handles the HTTP <code>POST</code> method.
* @param request servlet request
* @param response servlet response
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/** Returns a short description of the servlet.
*/
public String getServletInfo() {
return "Short description";
}
// </editor-fold>
}