The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
July 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:

if I understand yuor problem correctly ,there is one of common solutions

Posted by Wladiw on July 30, 2001 at 8:27 AM

import java.util.*;
import java.text.*;

public class Test {
public static void main(String[] args) {
String ss = "3.4444556";
float rez = (Float.valueOf(ss)).floatValue();

DecimalFormat myFormatter =new DecimalFormat("##,####.##");
String output = myFormatter.format(rez);

System.out.println(output);
}
}






Replies:

Sponsored Links



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