在下面的代码中,我想知道为什么会抛出异常:
import java.text.*;
class NumFormat
{
public static void main(String[] args)throws Exception{
String s = "123.456xyz";
NumberFormat nf = NumberFormat.getInstance();
System.out.println(nf.parse(s));
nf.setMaximumFractionDigits(2);
System.out.println(nf.format(s));
}
}