공부
[Java] Unescape HTML
승가비
2019. 11. 19. 00:37
728x90
import org.apache.commons.lang.StringEscapeUtils;
...
String decodedXML= StringEscapeUtils.unescapeHtml(encodedXML);
[출처] https://stackoverflow.com/questions/994331/how-to-unescape-html-character-entities-in-java
728x90