Retrieving format string from Format object - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T20:01:16Zhttp://stackoverflow.com/feeds/question/744696http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/744696/retrieving-format-string-from-format-object3Retrieving format string from Format objectihumanable2009-04-13T17:33:05Z2009-04-14T21:22:40Z
<p>In Java is there a way to retrieve the format string from a Format object (or any derived classes)</p>
<p>In code: </p>
<pre><code>Format f = new DecimalFormat("$0.00");
System.out.println(???);
</code></pre>
<p>Is there something I can use to get System.out.println(???); to print "$0.00".</p>
<p>I looked at toPattern(); but that function doesn't appear in the abstract Format class and the variable I'm working with can be anything that extends Format.</p>
http://stackoverflow.com/questions/744696/retrieving-format-string-from-format-object/744740#7447400Answer by Brian Agnew for Retrieving format string from Format objectBrian Agnew2009-04-13T17:42:38Z2009-04-13T17:42:38Z<p>No such luck, I'm afraid! You have to know which subclass you're dealing with and call the appropriate method :-(</p>
http://stackoverflow.com/questions/744696/retrieving-format-string-from-format-object/744741#7447410Answer by MahdeTo for Retrieving format string from Format objectMahdeTo2009-04-13T17:42:42Z2009-04-13T17:42:42Z<p>There is no known direct way to do this from the parent Format. as patterns actually exist at the leaves of the Format hierarchy (SimpleDateFormat, MessageFormat, ChoiceFormat, DecimalFormat); which have toPattern methods. Since it seems to be the convention, you might be able to obtain it by reflection.</p>
http://stackoverflow.com/questions/744696/retrieving-format-string-from-format-object/744799#7447991Answer by Steve Kuo for Retrieving format string from Format objectSteve Kuo2009-04-13T17:58:26Z2009-04-14T21:22:40Z<p>The pattern (if there is any at all) depends on the subclass of <code>Format</code>. There is no guarantee that a <code>Format</code> would even use a pattern for its formatting.</p>
<p>Edit: I'm not sure what you're trying to do, but if you need to persist a Format instance, it is Serializable.</p>
http://stackoverflow.com/questions/744696/retrieving-format-string-from-format-object/745505#7455050Answer by KingInk for Retrieving format string from Format objectKingInk2009-04-13T21:38:32Z2009-04-13T21:38:32Z<p>I am not sure what is access you have to the code but if you apply this small change in the first line you should be able to get the information you are looking in this manner:</p>
<pre><code>DecimalFormat f = new DecimalFormat("$0.00");
System.out.println(f.toPattern());
</code></pre>