Java字符串格式化:
1.数值转换为字符
String.format("%.2f", num);
String.format("%.0f", num);
2.字符转浮点数
Double.parseDouble(editText_ordernum);