java怎么将1,000转为整数?java怎么将1,000转为整数? [解决办法]
如果都是类似于这种的话DecimalFormat df=new DecimalFormat("0,000");Number num=df.parse("1,000");System.out.print(num);