java.lang.NumberFormatException: multiple points

来源:百度知道 编辑:UC知道 时间:2024/06/14 22:54:14
java.lang.NumberFormatException: multiple points
at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1084)
at java.lang.Double.parseDouble(Double.java:482)
at java.text.DigitList.getDouble(DigitList.java:141)
at java.text.DecimalFormat.parse(DecimalFormat.java:1276)
at java.text.SimpleDateFormat.subParse(SimpleDateFormat.java:1375)
at java.text.SimpleDateFormat.parse(SimpleDateFormat.java:1124)
at java.text.DateFormat.parse(DateFormat.java:333)
at org.mycommon.util.Util.strtodatetime(Util.java:515)
at org.mysso.client.imp.SocketSSOClient.PropertiesToUser(SocketSSOClient.java:398)
at org.mysso.client.imp.SocketSSOClient.find(SocketSSOClient.java:435)
at com.marryfive.common.helper.SSOHelper.hasSignOned(SSOHelper.java:131)
at com.marryfive.common.filter.SSOFilter.doFilter(SSOFilter.java:88)
at com.caucho.server.dispatch.FilterFilterChain.doFilter(FilterFilterChain.java:70)
at com.caucho.

SimpleDateFormat是非线程安全的,每次用的时候new一个

数字的格式出错
可能是你的变量类型在转换的过程中有问题

数据封装的时候出问题了,可能是数据格式有问题

SimpleDateFormat是非线程安全的。