- // current
- String response = componentResponse.getOutput();
- byte[] output = response.getBytes(encoding); // this is retarded
- response.getOutputStream().write(output);
- // better
- String response = componentResponse.getOutput();
- new PrintStream(response.getOutputStream(), encoding).print(response);