<?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>Catzie.net Blog &#187; Java</title>
	<atom:link href="http://blog.catzie.net/tag/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.catzie.net</link>
	<description>Programming, Networking, and other Downloads by Catzie</description>
	<lastBuildDate>Tue, 07 Feb 2012 15:19:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Java: Strings</title>
		<link>http://blog.catzie.net/java-strings/</link>
		<comments>http://blog.catzie.net/java-strings/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 05:32:22 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=724</guid>
		<description><![CDATA[First off, if you are in need of a good Java programming reference book, I suggest that you try Head First Java. In this blog entry, basics in Strings in Java programming will be briefly discussed. Assumption: You have already set up your Java development kit on your computer. (Environmental Variables, paths, etc&#8230;) Hello World [...]]]></description>
			<content:encoded><![CDATA[<p>First off, if you are in need of a good Java programming reference book, I suggest that you try <a href="http://blog.catzie.net/pdf-download-head-first-java-2nd-edition-by-katy-sierra-and-bert-bates/">Head First Java</a>.</p>
<p>In this blog entry, basics in Strings in Java programming will be briefly discussed.</p>
<p>Assumption: You have already set up your Java development kit on your computer. (Environmental Variables, paths, etc&#8230;)<br />
<span id="more-724"></span></p>
<h2>Hello World in Java</h2>
<p>Let&#8217;s start off with a hello world. Save the following code as HelloWorld.java<br />
<code>class HelloWorld {<br />
     public static void main(String[] args)<br />
     {<br />
           System.out.println("Hello World!");<br />
     }<br />
}<br />
</code></p>
<p>For Windows or Unix, go to Command Prompt, change to the Java directory, and type <code>javac C:\PathToFile\HelloWorld.java </code> to compile the program. Then, type <code>java HelloWorld </code> to run it. You should be able to see &#8220;Hello World&#8221; on your screen.</p>
<h2>String in Java</h2>
<p>This is a new file to compile and run. (For example, JavaStringTest.java)<br />
<code><br />
class JavaStringTest{<br />
     public static void main(String[] args)<br />
     {<br />
           String MyName;<br />
           MyName = "Catzie";<br />
          System.out.println(MyName);<br />
     }<br />
}<br />
</code></p>
<h2>String Array in Java</h2>
<p>This is how you create and loop through a <strong>String Array</strong> in Java.<br />
<code><br />
class StringCharacter<br />
{<br />
  static String[] FruitShake={"milk","sugar","strawberry","Banana","Apple"};<br />
  public static void main(String args[]){<br />
    for(int i=0;i<5;i++){<br />
    System.out.println(roseindia[i]);<br />
    }<br />
  }<br />
}<br />
</code></p>
<h2>Java Array Length</h2>
<p>Now that you know how to create and print String array contents, let's try to get the length of a Java array.</p>
<p><code><br />
class StringCharacter<br />
{<br />
  static String[] FruitShake={"milk","sugar","strawberry","Banana","Apple"};<br />
  public static void main(String args[]){<br />
 int arrayLength = FruitShake.length;<br />
    System.out.format("Number of FruitShake ingredients is %d", arrayLength);<br />
  }<br />
}<br />
</code></p>
<p>*NOTE: Codes are not YET tested.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/java-strings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PDF Download: Head First Java (2nd Edition) &#8211; by Katy Sierra and Bert Bates</title>
		<link>http://blog.catzie.net/pdf-download-head-first-java-2nd-edition-by-katy-sierra-and-bert-bates/</link>
		<comments>http://blog.catzie.net/pdf-download-head-first-java-2nd-edition-by-katy-sierra-and-bert-bates/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 12:37:50 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Bert Bates]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[e-book]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Katy Sierra]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[Study Materials]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=195</guid>
		<description><![CDATA[Learning Java? Great, this book will help you. I uploaded this Java Programming PDF to share with IT Elective 1 (Object Oriented Programming with Java) classmates. I searched for it in Google, and I&#8217;m lucky to find this free e-book of Head First Java &#8211; Second Edition. I can&#8217;t remember where I got it from [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Learning Java?</strong> Great, this <strong>book</strong> will help you.</p>
<p>I uploaded this <strong>Java </strong> Programming <strong>PDF </strong>to share with IT Elective 1 (Object Oriented Programming with <strong>Java</strong>) classmates. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I searched for it in Google, and I&#8217;m lucky to find this free e-book of <strong>Head First Java</strong> &#8211; Second Edition. I can&#8217;t remember where I got it from though. It&#8217;s been days (EDIT: no, it&#8217;s been months now! or maybe years), and I got a poor memory.  lol.</p>
<p>And by the way, I used <a href="http://www.a-pdf.com/split/" onclick="pageTracker._trackPageview('/outgoing/www.a-pdf.com/split/?referer=');">A-PDF Split</a> to split the e-book into separate chapters of the PDF for our convenience. The file I downloaded is only one PDF file which had 690 pages. It lags in slow computers. It&#8217;s also better off being separated by chapters for ease of reading, right? So, there. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I hope the Java PDF download links on this blog entry (Head First Java &#8211; Download) help you guys, and if you do find them helpful, please LIKE my website on Facebook, the Like button is right below on the FB box, thank you! <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div align="center"><iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FCatzienet%2F184242441614759&amp;width=350&amp;colorscheme=light&amp;show_faces=true&amp;stream=false&amp;header=false&amp;height=180" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:350px; height:180px;" allowTransparency="true"></iframe></div>
<p><span id="more-195"></span></p>
<h2>Download Link for Head First Java Ebook</h2>
<p><em><strong>New!</strong></em> The following Head First Java Ebook is of <strong>better quality than the scanned one</strong>. It&#8217;s not split into several PDFs of individual chapters though, because I have no time to do it yet. It&#8217;s one big PDF file for now.</p>
<p><b>FILE SIZE: 37.53MB</b></p>
<a class="downloadlink" href="http://blog.catzie.net/download/44" title=" downloaded 16506 times" >Head First Java (2nd Edition, Better Quality in One Big PDF) by Kathy Sierra and  Bert Bates (Non-hotlinked from MediaFire) (16506)</a>
<h2>Download Links for Head First Java Ebook </h2>
<p>The zip file that follows contains Head First Java <strong>scanned</strong> ebook split into several PDFs of individual chapters.</h2>
<p><b>FILE SIZE: 31.6MB</b></p>
<ul>
<li><a class="downloadlink" href="http://blog.catzie.net/download/13" title=" downloaded 34369 times" >Head First Java (2nd Edition, Scanned) by Kathy Sierra and  Bert Bates (Non-hotlinked from MediaFire) (34369)</a></li>
<li><a class="downloadlink" href="http://blog.catzie.net/download/11" title=" downloaded 27670 times" >Head First Java (2nd Edition, Scanned) by Kathy Sierra and  Bert Bates (on FileDen) (27670)</a></li>
</ul>
<h3>Java Book Chapters</h3>
<ol>
<li>Breaking the Surface: a quick dip </li>
<li>A Trip to Objectville: yes, there will be objects</li>
<li>Know Your Variables: primitives and references</li>
<li>How Objects Behave: object state affects method behavior </li>
<li>Extra-Strength Methods: flow control, operations, and more </li>
<li>Using the Java Library: so you don’t have to write it all yourself</li>
<li>Better Living in Objectville: planning for the future</li>
<li>Serious Polymorphism: exploiting abstract classes and interfaces </li>
<li>Life and Death of an Object: constructors and memory management </li>
<li>Numbers Matter: math, formatting, wrappers, and statics </li>
<li>Risky Behavior: exception handling </li>
<li>A Very Graphic Story: intro to GUI, event handling, and inner classes </li>
<li>Work on Your Swing: layout managers and components</li>
<li>Saving Objects: serialization and I/O</li>
<li>Make a Connection: networking sockets and multithreading</li>
<li>Data Structures: collections and generics </li>
<li>Release Your Code: packaging and deployment</li>
<li>Distributed Computing: RMI with a dash of servlets, EJB, and Jini</li>
</ol>
<p>Happy <strong>Java</strong> programming, y&#8217;all. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Make good use of the <strong>learning Java book</strong> you downloaded.</p>
<blockquote><p><strong>Java </strong>is a programming language originally developed by James Gosling at Sun Microsystems (which is now a subsidiary of Oracle Corporation) and released in 1995 as a core component of Sun Microsystems&#8217; Java platform.</p></blockquote>
<p>The syntax of Java is mostly derived from that of C and C++ programming languages, but with simpler object model and fewer low-level facilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/pdf-download-head-first-java-2nd-edition-by-katy-sierra-and-bert-bates/feed/</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
	</channel>
</rss>

