I have a function which returns a array of "UTF-16LE" decoded bytes,(with starting BOM)
protected byte[] convert(String reportHTML) throws BuilderException, RenderingException, IOException {
byte bom[] ={(byte)0xFF,(byte)0xFE};
byte content[] = (reportHTML).substring(reportHTML.indexOf('\n') + 1).getBytes("UTF-16LE");
byte finalContent[] = new byte[bom.length + content.length];
System.arraycopy(bom, 0, finalContent, 0, bom.length);
System.arraycopy(content, 0, finalContent, bom.length, content.length);
return finalContent;
}
reportHTML has tab-sepearted values.
Now I store this byte array in a variable name report and then write it to the response
response.setContentType("text/plain; charset=utf-16le");//also tried "text/plain"
response.setHeader("CONTENT-DISPOSITION", "attachment; filename=" + getReportID() + "." + reportCreator.getExtension());
response.getOutputStream().write(report);
It makes the user download a text file
This text file I download using my browser is double encoded.
I can fix t by using this method
response.getWriter().write(new String(report,"UTF-16LE"));
But this is a unnecessary overhead and also as this is a generic method which writes the bytes into the report so I will need to hardcode the above fix for a special case.
Is there anyway that I can write bytes directly to response and stop it from re-encoding my already encoded byte values?
This question is the extension of this question
For more background please check out this chat and this answer
this is the sample servlet snippet
response.setContentType("text/plain; charset=utf-16le");
response.setHeader("CONTENT-DISPOSITION", "attachment; filename=test.txt");
response.getOutputStream().write("ääööTest".getBytes("UTF-16LE"));
response.getOutputStream().flush()
return;
I get this output Instead of correct output
Correct Output was created by writing the content directly into a file
File file = new File("test.txt");
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(file));
out.write("ääööTest".getBytes("UTF-16LE"));
out.flush();
out.close();