0

what is default encoding of pageContext.getOut().write(message) and how to set the other encoding if I need?

Nico_99
  • 29
  • 2
  • 7

1 Answers1

0

The default encoding relate to your Browser, you can set the encoding by using:

response.setContentType("text/html;charset=UTF-8");
gil.fernandes
  • 12,978
  • 5
  • 63
  • 76