Why does the Java string:
"God's wrath"
appear in HTML as
God's wrath
How to avoid this?
|
|
This character is escaped to prevent XSS if the resulting string is used in HTML attribute quoted with I don't think it's a good idea to disable such security precautions, since they don't harm the normal behaviour. |
||||
|
|
|
Just like the '<', '>', and other characters, the quote is replaced by that code to avoid nasty surprises when the browser is rendering the page. Take a look at this list by W3Schools for a complete list of codes and their respective symbol. |
|||
|
|
|
If you're using JSTL the c:out tag has an escapeXml attribute, you can set it to false to avoid encoding characters. |
|||
|
|
|
Special characters appear as ampersand escaped numbers because they mean something in HTML. In this case the ' is used to start a string literal. if you want it to actually show the ' then you have to replace it with the escaping. That's the why. I don't know why you'd want to avoid it though. |
|||
|
|