<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cliff Ngan &#187; Java</title>
	<atom:link href="http://cliffngan.net/a/tag/java/feed" rel="self" type="application/rss+xml" />
	<link>http://cliffngan.net</link>
	<description>Just my notes blog</description>
	<lastBuildDate>Sun, 29 Jan 2012 02:45:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Pro Java Programming, Second Edition</title>
		<link>http://cliffngan.net/a/258</link>
		<comments>http://cliffngan.net/a/258#comments</comments>
		<pubDate>Tue, 09 Nov 2010 07:57:52 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[EBooks]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Pro]]></category>

		<guid isPermaLink="false">http://cliffngan.net/?p=258</guid>
		<description><![CDATA[Pro Java Programming, Second Edition English &#124;2005 &#124; 720 pages &#124; ISBN 1590594746 &#124; PDF &#124; 15 MB Fully updated for the Java 2 Platform, Standard Edition version 5.0, the third edition of this praised book is a one-stop resource for serious Java developers. This book shows you the parts of Java Swing API that [...]]]></description>
		<wfw:commentRss>http://cliffngan.net/a/258/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java Web Services: Up and Running</title>
		<link>http://cliffngan.net/a/205</link>
		<comments>http://cliffngan.net/a/205#comments</comments>
		<pubDate>Wed, 27 Oct 2010 08:29:23 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[EBooks]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://cliffngan.net/?p=205</guid>
		<description><![CDATA[Book Description This example-driven book offers a thorough introduction to Java’s APIs for XML Web Services (JAX-WS) and RESTful Web Services (JAX-RS). Java Web Services: Up and Running takes a clear, pragmatic approach to these technologies by providing a mix of architectural overview, complete working code examples, and short yet precise instructions for compiling, deploying, [...]]]></description>
		<wfw:commentRss>http://cliffngan.net/a/205/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending a HTTP request from Java code</title>
		<link>http://cliffngan.net/a/70</link>
		<comments>http://cliffngan.net/a/70#comments</comments>
		<pubDate>Thu, 23 Apr 2009 12:49:56 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JSP]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[request]]></category>

		<guid isPermaLink="false">http://cliffngan.net/?p=70</guid>
		<description><![CDATA[import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; public class HTTPRequest { public static void main(String[] args) { String requestUrl = &#8220;http://www.google.com.hk&#8220;; try { URL url = new URL(requestUrl.toString()); BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream())); String inputLine; System.out.println(&#8220;&#8212;&#8211;RESPONSE START&#8212;&#8211;&#8220;); while ((inputLine = in.readLine()) != null) { System.out.println(inputLine); } in.close(); System.out.println(&#8220;&#8212;&#8211;RESPONSE END&#8212;&#8211;&#8220;); } catch (IOException e) [...]]]></description>
		<wfw:commentRss>http://cliffngan.net/a/70/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

