<?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>JavaBlogging &#187; Tools</title>
	<atom:link href="http://www.javablogging.com/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.javablogging.com</link>
	<description>Tracking surprises, features and bugs</description>
	<lastBuildDate>Sun, 16 May 2010 03:01:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Read and write XML</title>
		<link>http://www.javablogging.com/read-and-write-xml/</link>
		<comments>http://www.javablogging.com/read-and-write-xml/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 11:11:42 +0000</pubDate>
		<dc:creator>Miron Sadziak</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[DOM]]></category>

		<guid isPermaLink="false">http://www.javablogging.com/?p=679</guid>
		<description><![CDATA[This article is supposed to start you off for writing applications which read and write XML data in Java. In 80% of cases when somebody needs to start such and application from scratch, he doesn&#8217;t need too much theory about XML, instead he wants to have a piece of code that simply shows how to [...]]]></description>
		<wfw:commentRss>http://www.javablogging.com/read-and-write-xml/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Optimize your Eclipse experience!</title>
		<link>http://www.javablogging.com/optimize-your-eclipse-experience/</link>
		<comments>http://www.javablogging.com/optimize-your-eclipse-experience/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 15:12:16 +0000</pubDate>
		<dc:creator>ppow</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.javablogging.com/?p=564</guid>
		<description><![CDATA[Today instead of writing my own post I want to share with you some of my recent findings on the web about different ways you can improve the quality of your work with Eclipse.
First two links are from Benjamin Winterberg&#8217;s blog: the more recent one describes some easy, but practical ways of optimizing the speed [...]]]></description>
		<wfw:commentRss>http://www.javablogging.com/optimize-your-eclipse-experience/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>FindBugs plugin for Eclipse</title>
		<link>http://www.javablogging.com/findbugs-plugin-for-eclipse/</link>
		<comments>http://www.javablogging.com/findbugs-plugin-for-eclipse/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 08:19:29 +0000</pubDate>
		<dc:creator>ppow</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Code Quality]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[FindBugs]]></category>

		<guid isPermaLink="false">http://www.javablogging.com/?p=385</guid>
		<description><![CDATA[Some time ago I wrote a post about FindBugs &#8211; a powerful tool for static code analysis in Java. Today I want to tell you about an Eclipse plugin that allows you to integrate FindBugs into your favorite IDE and automatically use it on your code.
The plugin works only with Eclipse 3.3+. The install instructions [...]]]></description>
		<wfw:commentRss>http://www.javablogging.com/findbugs-plugin-for-eclipse/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dynamic in-memory compilation</title>
		<link>http://www.javablogging.com/dynamic-in-memory-compilation/</link>
		<comments>http://www.javablogging.com/dynamic-in-memory-compilation/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 13:22:29 +0000</pubDate>
		<dc:creator>Miron Sadziak</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[compilation]]></category>
		<category><![CDATA[CharSequence]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[java.tools]]></category>
		<category><![CDATA[JavaCompiler]]></category>

		<guid isPermaLink="false">http://www.javablogging.com/?p=438</guid>
		<description><![CDATA[Let&#8217;s suppose you have some string containing a source code for a class, something like &#8220;public class Test {}&#8221;. You want to compile it dynamically in memory and get an instance of that class. How can you accomplish that? We will try to present here a way to do it. We will use the javax.tools [...]]]></description>
		<wfw:commentRss>http://www.javablogging.com/dynamic-in-memory-compilation/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Writing micro benchmarks in Java</title>
		<link>http://www.javablogging.com/writing-micro-benchmarks-in-java/</link>
		<comments>http://www.javablogging.com/writing-micro-benchmarks-in-java/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 08:25:48 +0000</pubDate>
		<dc:creator>ppow</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Micro Benchmarks]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.javablogging.com/?p=384</guid>
		<description><![CDATA[Recently I have encountered a few articles on the web about performance in Java. The authors were comparing the execution time of different code snippets implementing the same functionality and tried to make conclusions about which one is more efficient. I have to say that I find the topic really interesting. I have seen a [...]]]></description>
		<wfw:commentRss>http://www.javablogging.com/writing-micro-benchmarks-in-java/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Find bugs with FindBugs</title>
		<link>http://www.javablogging.com/find_bugs_with_findbugs/</link>
		<comments>http://www.javablogging.com/find_bugs_with_findbugs/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 20:36:08 +0000</pubDate>
		<dc:creator>ppow</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Code Quality]]></category>
		<category><![CDATA[FindBugs]]></category>

		<guid isPermaLink="false">http://www.javablogging.com/?p=177</guid>
		<description><![CDATA[
Recently I have realised that often in posts on this blog I tend to mention the FindBugs tool. Therefore today some words about it.
FindBugs is a tool for a static analysis of Java code. It basically goes trough your programs (both .class and .java files) and searches for patterns of most common bugs. When you [...]]]></description>
		<wfw:commentRss>http://www.javablogging.com/find_bugs_with_findbugs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
