Retrieving format string from Format object - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:01:16Z http://stackoverflow.com/feeds/question/744696 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/744696/retrieving-format-string-from-format-object 3 Retrieving format string from Format object ihumanable 2009-04-13T17:33:05Z 2009-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#744740 0 Answer by Brian Agnew for Retrieving format string from Format object Brian Agnew 2009-04-13T17:42:38Z 2009-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#744741 0 Answer by MahdeTo for Retrieving format string from Format object MahdeTo 2009-04-13T17:42:42Z 2009-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#744799 1 Answer by Steve Kuo for Retrieving format string from Format object Steve Kuo 2009-04-13T17:58:26Z 2009-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#745505 0 Answer by KingInk for Retrieving format string from Format object KingInk 2009-04-13T21:38:32Z 2009-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>