<?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>Tech-Recipes &#187; Java programming</title>
	<atom:link href="http://www.tech-recipes.com/category/computer-programming/java-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Thu, 09 Feb 2012 21:32:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Java: Working With Buffers</title>
		<link>http://www.tech-recipes.com/rx/1438/java-working-with-buffers/</link>
		<comments>http://www.tech-recipes.com/rx/1438/java-working-with-buffers/#comments</comments>
		<pubDate>Thu, 15 Jun 2006 10:09:54 +0000</pubDate>
		<dc:creator>yoperman</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[

Working with buffers:
Buffers can be very useful in java since they can speed io operations a lot. Basically a buffer is a space allocated into memory for Bytes, Chars, and other data types to be entered.  I have found Buffers really useful when writing Client/ Server applications.
You create a Buffer like this:
/*
* Buffer size
*/
int [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1438/java-working-with-buffers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java: Information Hiding</title>
		<link>http://www.tech-recipes.com/rx/1428/java-information-hiding/</link>
		<comments>http://www.tech-recipes.com/rx/1428/java-information-hiding/#comments</comments>
		<pubDate>Tue, 13 Jun 2006 13:55:13 +0000</pubDate>
		<dc:creator>yoperman</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[

Information hiding is a key feature of java. When declaring a variable or a method it can be one of four things: private, protected, or public or default. The way you specify the type is using one of the three keywords or none at all. 
For example:

// Default
int i = 0;
//public
public int i = 0;

Public: [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1428/java-information-hiding/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Java: Threads</title>
		<link>http://www.tech-recipes.com/rx/1378/java-threads/</link>
		<comments>http://www.tech-recipes.com/rx/1378/java-threads/#comments</comments>
		<pubDate>Fri, 12 May 2006 14:05:29 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[How to implement your own dynamic class threads, and run them.

simply copy the 2 code segments and replace the //thread code with your desired code to thread.
//private Thread class:

private class ThreadMyProg implements Runnable{
     public void run(){
          //thread code
     [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1378/java-threads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java: Decimal Format to Easily Create Custom Output</title>
		<link>http://www.tech-recipes.com/rx/1326/java-decimal-format-to-easily-create-custom-output/</link>
		<comments>http://www.tech-recipes.com/rx/1326/java-decimal-format-to-easily-create-custom-output/#comments</comments>
		<pubDate>Wed, 05 Apr 2006 22:18:00 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[The Decimal Format class is a poorly explained class in the java Documentation so i will clear up a little of it with an example.

you first need to import the DecimalFormat class:

import java.text.DecimalFormat;

then create a format object.  this object can be used with doubles, as it uses a decimal. It uses a template String [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1326/java-decimal-format-to-easily-create-custom-output/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Java: Button Press &#8211; Action Event</title>
		<link>http://www.tech-recipes.com/rx/1267/java-button-press-action-event/</link>
		<comments>http://www.tech-recipes.com/rx/1267/java-button-press-action-event/#comments</comments>
		<pubDate>Mon, 13 Mar 2006 15:26:22 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[How to use the ActionEvent for buttons, list selections, etc

The ActionEvent is a class called when an action is performed on items in your GUI. As a simple example we will handle the event on a button press, the code will only output text, but you can add any code you want.
CODE:

import java.io.*;
import java.awt.*;
import java.util.*;
import [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1267/java-button-press-action-event/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Java: Recursion</title>
		<link>http://www.tech-recipes.com/rx/1266/java-recursion/</link>
		<comments>http://www.tech-recipes.com/rx/1266/java-recursion/#comments</comments>
		<pubDate>Mon, 13 Mar 2006 09:32:58 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[The basics of recursion and how it works. Including a factorial example

you probably use recursion often, whether you realize it or not.  It is a process of subdividing a problem into several smaller problems with easily calculated results, then putting these results together to achieve the original intent.
For this example, a factorial (say 6!), [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1266/java-recursion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Java: turn your .class into an applet</title>
		<link>http://www.tech-recipes.com/rx/1265/java-turn-your-class-into-an-applet/</link>
		<comments>http://www.tech-recipes.com/rx/1265/java-turn-your-class-into-an-applet/#comments</comments>
		<pubDate>Mon, 13 Mar 2006 05:17:15 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[How to modify your existing java GUIs into applets to share with the web viewing world.

Do note that most file transfers are not possible in applets, it just doesn&#8217;t work like that.  There are ways around it to do some read or write operations, but that is beyond this simple transformation recipe.
An applet is [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1265/java-turn-your-class-into-an-applet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java: Interfaces</title>
		<link>http://www.tech-recipes.com/rx/1233/java-interfaces/</link>
		<comments>http://www.tech-recipes.com/rx/1233/java-interfaces/#comments</comments>
		<pubDate>Wed, 01 Mar 2006 09:00:38 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[The how and why of interfaces

An interface may seem like a useless invention, it simply defines what methods are included in a class, but that&#8217;s not all it does, and not entirley acurate.
An interface includes methods that are similar between different objects, perhaps you have a Person object and a Dog object, to display a [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1233/java-interfaces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java: Multi-Column JList (swing)</title>
		<link>http://www.tech-recipes.com/rx/1221/java-multi-column-jlist-swing/</link>
		<comments>http://www.tech-recipes.com/rx/1221/java-multi-column-jlist-swing/#comments</comments>
		<pubDate>Mon, 27 Feb 2006 13:23:59 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[Ever wanted an aligned multi-column JList that allowed all columns to be selected as a single entry? Here&#8217;s how.

*Note the column size will automatically become the size of the longest string, or largest picture, etc.
This example will show how to construct a JList with 3 columns, to add or remove is a simple editing job, [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1221/java-multi-column-jlist-swing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Java: Wrapper Classes</title>
		<link>http://www.tech-recipes.com/rx/1216/java-wrapper-classes/</link>
		<comments>http://www.tech-recipes.com/rx/1216/java-wrapper-classes/#comments</comments>
		<pubDate>Thu, 23 Feb 2006 09:37:43 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[Java programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[Decription on going to and from the java Object wrapper classes.

Wrapper classes to exactly what they say, they wrap primitive types (eg: int, double, etc) in Objects which can be placed into Vectors, and many, many other uses.
*Notice that an Object starts with a capital letter, while the primitives all start with a lowercase. Also [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1216/java-wrapper-classes/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (User agent is rejected)
Database Caching 3/11 queries in 0.933 seconds using memcached
Object Caching 533/569 objects using memcached

Served from: www.tech-recipes.com @ 2012-02-10 05:08:17 -->
