java.lang.NumberFormatException: For input string: "UTC"
Searched on Google with the first line of a JAVA stack trace?
We can recommend more relevant solutions and speed up debugging when you paste your entire stack trace with the exception message. Try a sample exception.
Recommended solutions based on your search
Samebug tips
You try to parse a String that contains non-numeric characters to an int. The string must contain decimal characters only, optionally beginning with a + or - sign.
Can occur when you try to convert a String to a numeric value but the String is not well formatted for the conversion.
Solutions on the web
via GitHub by ebourg
, 1 year agovia Stack Overflow by user3374835
, 2 years agovia Coderanch by Mike Oxenfire, 1 year ago
via GitHub by DallonTG
, 2 years agovia Apache's JIRA Issue Tracker by Hao Xia, 1 year ago
via ws-users by Jochen Wiedmann, 2 years ago
java.lang.NumberFormatException: For input string: "UTC"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:580)
at java.lang.Integer.parseInt(Integer.java:615)
at net.minidev.asm.ConvertDate.addHour(ConvertDate.java:264)
at net.minidev.asm.ConvertDate.getDDMMYYYY(ConvertDate.java:229)
at net.minidev.asm.ConvertDate.convertToDate(ConvertDate.java:139)
at net.minidev.asm.TestDateConvert.fullTestDate(TestDateConvert.java:75)
at net.minidev.asm.TestDateConvert.testDateLocalized(TestDateConvert.java:62)
at net.minidev.asm.TestDateConvert.testDateGERMANY(TestDateConvert.java:51)