The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
January 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

Use DecimalFormat class from java.text package

Posted by Kishori Sharan on January 18, 2001 at 9:23 PM

import java.text.* ;


public class Test {
public static void main ( String[] args ) throws Exception {
DecimalFormat df = new DecimalFormat ( "###.##" ) ;
double d = 1.6667676 ;
System.out.println ( df.format ( d ) ) ;
}

}





Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us