<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Encode/Decode HTML in Java</title>
	<atom:link href="http://robin.mytechtip.com/2009/02/04/encode-decode-html-in-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://robin.mytechtip.com/2009/02/04/encode-decode-html-in-java/</link>
	<description>Just another My Tech Tip weblog</description>
	<lastBuildDate>Thu, 15 Jul 2010 23:28:49 +1000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nick</title>
		<link>http://robin.mytechtip.com/2009/02/04/encode-decode-html-in-java/#comment-744</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Fri, 19 Mar 2010 20:42:57 +0000</pubDate>
		<guid isPermaLink="false">http://robin.mytechtip.com/?p=22#comment-744</guid>
		<description>You should also try using JSTL standard c:out tag.  The c:out tag has an attribute escapeXml, which can be set to true and will escape &gt;, &lt;, &quot;, &#039; 

Example:
</description>
		<content:encoded><![CDATA[<p>You should also try using JSTL standard c:out tag.  The c:out tag has an attribute escapeXml, which can be set to true and will escape &gt;, &lt;, &quot;, &#039; </p>
<p>Example:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jukty</title>
		<link>http://robin.mytechtip.com/2009/02/04/encode-decode-html-in-java/#comment-210</link>
		<dc:creator>jukty</dc:creator>
		<pubDate>Tue, 27 Oct 2009 12:46:31 +0000</pubDate>
		<guid isPermaLink="false">http://robin.mytechtip.com/?p=22#comment-210</guid>
		<description>I mean &quot;... to standart HTML entities like &amp; ...&quot;</description>
		<content:encoded><![CDATA[<p>I mean &#8220;&#8230; to standart HTML entities like &amp;amp; &#8230;&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jukty</title>
		<link>http://robin.mytechtip.com/2009/02/04/encode-decode-html-in-java/#comment-209</link>
		<dc:creator>jukty</dc:creator>
		<pubDate>Tue, 27 Oct 2009 12:45:14 +0000</pubDate>
		<guid isPermaLink="false">http://robin.mytechtip.com/?p=22#comment-209</guid>
		<description>JTidy is evil,
it also escapes spaces and number and everything else that is not letters so that the resulting string is totally unreadable.
Also it escapes to unicode form like &#xxxx; not to standart HTML entities like &amp;.
So use only apache, it rules!</description>
		<content:encoded><![CDATA[<p>JTidy is evil,<br />
it also escapes spaces and number and everything else that is not letters so that the resulting string is totally unreadable.<br />
Also it escapes to unicode form like &amp;#xxxx; not to standart HTML entities like &amp;.<br />
So use only apache, it rules!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Meher</title>
		<link>http://robin.mytechtip.com/2009/02/04/encode-decode-html-in-java/#comment-157</link>
		<dc:creator>Meher</dc:creator>
		<pubDate>Thu, 24 Sep 2009 16:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://robin.mytechtip.com/?p=22#comment-157</guid>
		<description>thank you robin :) thank you alls lol</description>
		<content:encoded><![CDATA[<p>thank you robin <img src='http://robin.mytechtip.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  thank you alls lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://robin.mytechtip.com/2009/02/04/encode-decode-html-in-java/#comment-52</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Tue, 02 Jun 2009 14:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://robin.mytechtip.com/?p=22#comment-52</guid>
		<description>FYI: I think JTidy is another way to do what you want.</description>
		<content:encoded><![CDATA[<p>FYI: I think JTidy is another way to do what you want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robin</title>
		<link>http://robin.mytechtip.com/2009/02/04/encode-decode-html-in-java/#comment-11</link>
		<dc:creator>robin</dc:creator>
		<pubDate>Wed, 01 Apr 2009 00:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://robin.mytechtip.com/?p=22#comment-11</guid>
		<description>URLDecoder and URLEncoder only deal with the URL. For exmaple, URLEncoder would encodes space to %20. However, escaping the HTML content is a different thing.</description>
		<content:encoded><![CDATA[<p>URLDecoder and URLEncoder only deal with the URL. For exmaple, URLEncoder would encodes space to %20. However, escaping the HTML content is a different thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jawed Ali</title>
		<link>http://robin.mytechtip.com/2009/02/04/encode-decode-html-in-java/#comment-9</link>
		<dc:creator>Jawed Ali</dc:creator>
		<pubDate>Tue, 31 Mar 2009 15:03:14 +0000</pubDate>
		<guid isPermaLink="false">http://robin.mytechtip.com/?p=22#comment-9</guid>
		<description>What about this class: java.net.URLDecoder

check out java docs, and I believe it is there for a long time.
http://java.sun.com/j2se/1.4.2/docs/api/java/net/URLDecoder.html</description>
		<content:encoded><![CDATA[<p>What about this class: java.net.URLDecoder</p>
<p>check out java docs, and I believe it is there for a long time.<br />
<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/net/URLDecoder.html" onclick="javascript:pageTracker._trackPageview('/outbound/comment/java.sun.com');" rel="nofollow">http://java.sun.com/j2se/1.4.2/docs/api/java/net/URLDecoder.html</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
