How can I read non alphanumeric characters (like Chinese characters) in Java? I tried to read a value from a .properties
file but I get broken characters in output.
filename = some method returning the file in Chinese
response.setProperty("Content-disposition", "attachment; filename=\"" + fileName +"\"");
response.setContentType("text/xlscharset=UTF-8");
response.setCharacterEncoding("utf-8");