<?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; Locale</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/locale/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 parse value using locale rules</title>
		<link>http://helpdesk.objects.com.au/java/how-to-parse-value-using-locale-rules?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-parse-value-using-locale-rules</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-parse-value-using-locale-rules#comments</comments>
		<pubDate>Sat, 19 Feb 2011 02:22:15 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[DecimalFormat]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[Locale]]></category>
		<category><![CDATA[NumberFormat]]></category>
		<category><![CDATA[parse]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1763</guid>
		<description><![CDATA[The NumberFormat and DecimalFormat classes provide support for parsing and formatting values. They are also locale sensitive, which means they adjust the formatting and parsing rules according to the locale or region of interest. For example in France they use a comma as a decimal separator so 5,48 is the same as 5.48 in the [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-parse-value-using-locale-rules/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to parse a currency value using Java</title>
		<link>http://helpdesk.objects.com.au/java/how-to-parse-a-currency-value-using-java?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-parse-a-currency-value-using-java</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-parse-a-currency-value-using-java#comments</comments>
		<pubDate>Sat, 19 Feb 2011 02:03:59 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[Currency]]></category>
		<category><![CDATA[DecimalFormat]]></category>
		<category><![CDATA[Locale]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[NumberFormat]]></category>
		<category><![CDATA[parse]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1761</guid>
		<description><![CDATA[The NumberFormat and DecimalFormat classes provide support for parsing and formatting currency values. For example to parse a string containing a money value in the default locale you can use the following. NumberFormat format = NumberFormat.getCurrencyInstance(); Object value = format.parse(&#34;$5.45&#34;); Related posts: How to format a currency value The NumberFormat class provides support for currency [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-parse-a-currency-value-using-java/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Calendar class to get localized day names</title>
		<link>http://helpdesk.objects.com.au/java/use-calendar-class-to-get-localized-day-names?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=use-calendar-class-to-get-localized-day-names</link>
		<comments>http://helpdesk.objects.com.au/java/use-calendar-class-to-get-localized-day-names#comments</comments>
		<pubDate>Tue, 27 Jul 2010 01:38:38 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[Locale]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1545</guid>
		<description><![CDATA[You can use the getDisplayName() in the Calendar class to get a localized (according to Locale) string for any of the Calendar fields. For example to get the day name you can use the following: Calendar cal = Calendar.getInstance(); String day = cal.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.LONG, Locale.getDefault()) If you&#8217;re looking for an algorithm to get the day [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/use-calendar-class-to-get-localized-day-names/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating BigDecimal from localized strings</title>
		<link>http://helpdesk.objects.com.au/java/creating-bigdecimal-from-localized-strings?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=creating-bigdecimal-from-localized-strings</link>
		<comments>http://helpdesk.objects.com.au/java/creating-bigdecimal-from-localized-strings#comments</comments>
		<pubDate>Sat, 14 Nov 2009 23:49:01 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[BigDecimal]]></category>
		<category><![CDATA[DecimalFormat]]></category>
		<category><![CDATA[Locale]]></category>
		<category><![CDATA[NumberFormat]]></category>
		<category><![CDATA[parse]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1281</guid>
		<description><![CDATA[The BigDecimal constructors do not take the Locale into account when parsing number strings. This means the following code will throw a NumberFormatException Locale.setDefault(new Locale(&#34;nl&#34;, &#34;NL&#34;)); String s = &#34;2.343.298,09324798&#34;; BigDecimal bd = new BigDecimal(s); To parse localized strings as BigDecimal we instead need to use the DecimalFormat class Locale.setDefault(new Locale(&#34;nl&#34;, &#34;NL&#34;)); String s = [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/creating-bigdecimal-from-localized-strings/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get the currency symbol used in a different Locale</title>
		<link>http://helpdesk.objects.com.au/java/get-the-currency-symbol-used-in-a-different-locale?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=get-the-currency-symbol-used-in-a-different-locale</link>
		<comments>http://helpdesk.objects.com.au/java/get-the-currency-symbol-used-in-a-different-locale#comments</comments>
		<pubDate>Tue, 28 Apr 2009 21:01:40 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[Currency]]></category>
		<category><![CDATA[Locale]]></category>
		<category><![CDATA[symbol]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1302</guid>
		<description><![CDATA[Sometimes you need to get the currency symbol used for your currency in a different Locale. eg. In the US they use $, but a different Locale may use US$. The Currency class can be used to not only get the currency symbol for a Locale, but also the currency symbol used for your currency [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/get-the-currency-symbol-used-in-a-different-locale/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get currency symbol for a Locale?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-get-currency-symbol-for-a-locale?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-get-currency-symbol-for-a-locale</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-get-currency-symbol-for-a-locale#comments</comments>
		<pubDate>Sat, 25 Apr 2009 02:50:41 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[Currency]]></category>
		<category><![CDATA[Locale]]></category>
		<category><![CDATA[symbol]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1299</guid>
		<description><![CDATA[The Currency class can be used to get the currency symbol used for a particular Locale as shown in the following example. Currency currency = Currency.getInstance(locale); String symbol = currency.getSymbol(); Related posts: Get the currency symbol used in a different Locale Sometimes you need to get the currency symbol used for... How to format a [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-get-currency-symbol-for-a-locale/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

