java中中国货币符号怎么打_用Java中的货币符号解析价格

Locale.GERMAN似乎没有货币符号. Locale.GERMANY将欧元符号作为其货币(不是字符串“EUR”).请注意,下面的blam1和blam3导致解析异常,CurrencyFormat对象只喜欢blam2.

NumberFormat numberFormat = NumberFormat.getCurrencyInstance(Locale.GERMANY);

System.out.println("75.13 euro: " + numberFormat.format(75.13));

try {

System.out.println("Parsed blam1: " + numberFormat.parse("EUR 75,11"));

} catch (ParseException exception) {

System.out.println("Parse Exception1: " + exception);

}

try {

System.out.println("Parsed blam2: " + numberFormat.parse("75,12 €"));

} catch (ParseException exception) {

System.out.println("Parse Exception2: " + exception);

}

try {

System.out.println("Parsed blam3: " + numberFormat.parse("€ 75,13"));

} catch (ParseException exception) {

System.out.println("Parse Exception3: " + exception);

}

我怀疑您需要找到一个符合您需求的开源货币解析器,或者自己编写一个.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值