ServletOutputStream out = response.getOutputStream();
VoterApp voter = VoterApp.getInstance();
if ( vote == null )//创建投票页面 { //Let's print out the Poll of the Day! response.setContentType("text/html"); out.println("Poll of the Day!"); out.println(""); } else//统计结果 {
voter.addToPollResults(vote);
//Get the generated poll results graph byte[] generatedGraph = voter.generateImageBytes(); if ( generatedGraph == null )//没有输出图像时输出文本字符 { response.setContentType("text/html"); out.println("Technical difficulties.. Please see " + "your administrator for details."); return; } else//输出统计图像 {