NumberFormat nf = NumberFormat.getInstance();
nf.setGroupingUsed(false);
String str = nf.format(Float.NEGATIVE_INFINITY);
System.out.println(str);
NumberFormat nf = NumberFormat.getInstance();
nf.setGroupingUsed(false);
String str = nf.format(Float.NEGATIVE_INFINITY);
System.out.println(str);