gwt のクライアント側で double から指数を削除するにはどうすればよいですか。
public double evaluate(final double leftOperand, final double rightOperand) {
Double rtnValue = new Double(leftOperand * rightOperand);
//Require to write code which remove exponent before return
return rtnValue.doubleValue();
}
NumberFormat を使用してサーバー側で可能
NumberFormat formatter = new DecimalFormat("#0.00");
System.out.println(number);
System.out.println(formatter.format(number));
ただし、クライアント側では次のような例外がスローされます: 16:08:04.190 [ERROR] [vflow] Line 359: No source code is available for type java.text.NumberFormat ; 必要なモジュールを継承するのを忘れましたか?
gwt には lib java.text JRE エミュレーション リファレンスが含まれていないため
また、String.format("%.2f", doubleResult); を試しました。
String.format() は GWT でサポートされていませんか、それともここで何か間違っていますか?
では、二重から指数関数を避けるにはどうすればよいですか? 方法はありますか?