Skip to main content

Assignment #11

Servlet-based Survey System

Filenames: Survey.html, Survey.java

Create an HTML data entry form for some sort of data collection/survey system. Your survey should contain at least one set of radio buttons, so you can generate some counts and statistics (it's easy to count how many 1s, 2, and 3s people select from radio buttons; it's much more difficult to summarize free-form text).

Write a servlet that retrieves the submitted form data, saves it into a server-based text file, and displays up-to-date survey results (counts, percentages, means, whatever makes sense for your survey).

In your index.html, change the href in the anchor tag for this assignment to Survey.html.