Community
Participate
Working Groups
response.setContentType("text/abcdef;charset=ISO-12345"); //works response.setContentType("text/ghi;charse=ISO-678"); // works, entire header replaced response.getPrintWriter(); response.setContentType("text/lmnop;charset=UTF-32"); // doesn't work, the result is text/lmnopcharset=ISO-678 (the semicolon is lost)
r2246