response.setContentLength(helloString.length()); response.setContentType("text/plain"); try { PrintStream rs = new PrintStream(response.getOutputStream()); rs.print(helloString); } catch (IOException e) { }