Skip to content

Instantly share code, notes, and snippets.

@JeremyMcCormick
Created August 12, 2015 22:53
Show Gist options
  • Save JeremyMcCormick/fb75543c8fce7937a581 to your computer and use it in GitHub Desktop.
Save JeremyMcCormick/fb75543c8fce7937a581 to your computer and use it in GitHub Desktop.
response.setContentType("text/html");
final PrintWriter out = response.getWriter();
out.println("<html><head><title>RunServlet</title></head>");
out.println("<body bgcolor=\"white\"><h1>Hello Servlet World</h1>");
out.println("</body></html>");
out.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment