<?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>web development helpdesk &#187; convert</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/convert/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to convert a File to a URL</title>
		<link>http://helpdesk.objects.com.au/java/how-to-convert-a-file-to-a-url?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-convert-a-file-to-a-url</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-convert-a-file-to-a-url#comments</comments>
		<pubDate>Fri, 11 Jun 2010 01:02:07 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[URI]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1504</guid>
		<description><![CDATA[Many developers use the toURL() method of the File class to convert a File to a URL. This method however does not handle correctly escaping characters that are illegal in URL’s (such as spaces) and has been deprecated. To convert a File to a URL you should instead first use the toURI() method to convert [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-convert-a-file-to-a-url/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to parse a binary String?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-parse-a-binary-string?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-parse-a-binary-string</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-parse-a-binary-string#comments</comments>
		<pubDate>Thu, 10 Jun 2010 23:44:31 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[binary]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[integer]]></category>
		<category><![CDATA[parse]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1496</guid>
		<description><![CDATA[You can tell the parseInt() method what base number system is used by the String that is being parsed. String hex = &#34;01001101&#34;; int n = Integer.parseInt(hex, 2); Related posts: How to parse a hex string? You can tell the parseInt() method what base number system... Converting large byte array to binary string You can [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-parse-a-binary-string/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert an Image to a BufferedImage?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-convert-an-image-to-a-bufferedimage?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-convert-an-image-to-a-bufferedimage</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-convert-an-image-to-a-bufferedimage#comments</comments>
		<pubDate>Sat, 23 May 2009 07:51:50 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[BufferedImage]]></category>
		<category><![CDATA[ColorModel]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=997</guid>
		<description><![CDATA[// Load the image image = new ImageIcon(image).getImage(); // Determine transparency for BufferedImage // http://helpdesk.objects.com.au/java/how-to-determine-if-image-supports-alpha boolean hasAlpha = hasAlpha(image); int transparency = hasAlpha ? Transparency.BITMASK : Transparency.OPAQUE; // Create the buffered image GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice gs = ge.getDefaultScreenDevice(); GraphicsConfiguration gc = gs.getDefaultConfiguration(); BufferedImage bufferedImage = gc.createCompatibleImage(image.getWidth(null), image.getHeight(null), transparency); if (bufferedImage == null) { [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-convert-an-image-to-a-bufferedimage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert an array to a String?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-convert-an-array-to-a-string?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-convert-an-array-to-a-string</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-convert-an-array-to-a-string#comments</comments>
		<pubDate>Thu, 05 Feb 2009 02:38:49 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[arrays]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=758</guid>
		<description><![CDATA[The Arrays class has a set of helper toString methods for converting an array to a string representation. String representation = Arrays.toString(array); This will work for all array types. For Objects it uses the toString() method of the type to convert array elements. If you need more control how the array is represented then you [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-convert-an-array-to-a-string/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I get a String representation of a Java array?</title>
		<link>http://helpdesk.objects.com.au/java/how-can-i-get-a-string-representation-of-a-java-array?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-can-i-get-a-string-representation-of-a-java-array</link>
		<comments>http://helpdesk.objects.com.au/java/how-can-i-get-a-string-representation-of-a-java-array#comments</comments>
		<pubDate>Wed, 08 Oct 2008 10:10:38 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[arrays]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=416</guid>
		<description><![CDATA[Use the toString() method of the Arrays utility class. Object[] array = new Object[] { &#34;abc&#34;, &#34;123&#34;, &#34;test&#34; }; String s = Arrays.toString(array); // s is now &#34;[abc, 123, test]&#34; Related posts: How can I convert a byte array to a hex string representation? You have a couple of choices, either: Loop thru the... How [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-can-i-get-a-string-representation-of-a-java-array/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I format a Date as a String?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-format-a-date-as-a-string?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-format-a-date-as-a-string</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-format-a-date-as-a-string#comments</comments>
		<pubDate>Wed, 01 Oct 2008 13:16:02 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=371</guid>
		<description><![CDATA[Either use the format() method of the SimpleDateFormat class, or the (static) format() method of the String class. DateFormat dateFormat = new SimpleDateFormat(&#34;hhmmddMMyy&#34;); Date today = new Date(); String formatted = dateFormat.format(today); String formatted2 = String.format(&#34;%&#60;tH%&#60;tM%&#60;tS%tY%&#60;tm%&#60;td&#34;, today); Related posts: How do I parse a Java String that specifies a Date? Use the parse() method of [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-format-a-date-as-a-string/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I parse a Java String that specifies a Date?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-parse-a-java-string-that-specifies-a-date?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-parse-a-java-string-that-specifies-a-date</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-parse-a-java-string-that-specifies-a-date#comments</comments>
		<pubDate>Wed, 01 Oct 2008 12:16:45 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=323</guid>
		<description><![CDATA[Use the parse() method of the SimpleDateFormat class. You can use setLenient(false) to force strict parsing. DateFormat dateFormat = new SimpleDateFormat(&#34;hh:mm dd/MM/yy&#34;); dateFormat.setLenient(false); Date d = dateFormat.parse(&#34;06:23 01/05/06&#34;); Related posts: How do a check that a string contains a valid date? Use the parse() method of the SimpleDateFormat class, it will... How do I format [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-parse-a-java-string-that-specifies-a-date/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

