Servlets Tutorials


Java servlets are a ubiquitous Java technology involved in web development. These tutorials investigate common tasks that occur when developing Java servlets.
  1. How do I tell what browser is hitting a servlet?
  2. How do I map requests to my application name to a servlet?
  3. How do I make servlet requests look like static content requests?
  4. How do I create a war file using the jar command?
  5. How do I view the contents of a war file using the jar command?
  6. What is a filter and how do I use it?
  7. How do I hit a servlet without a web.xml servlet mapping?
  8. How do I automatically refresh a servlet?
  9. What is a request dispatcher and how do i use it?
  10. How do I serve up a PDF from a servlet?
  11. How do I upload a file to a servlet?
  12. How do I monitor the progress of a file upload to a servlet?
  13. How do I display request headers?
  14. How do I determine the content length of a request?
  15. How do I internationalize my web application?
  16. How do I send cookies from a client to a servlet?
  17. How do I return an image from a servlet using ImageIO?
  18. How do I get the location of my web application context in the file system?
  19. How do I display a stack trace on a web page?
  20. How do I return a dynamically generated pie chart from a servlet?