java.lang.NumberFormatException: For input string: "1387826685226"
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 Sonatype JIRA by Peter Lynch, 1 year ago
via Eclipse Bugzilla by M8R-sgiphk, 1 year ago
via thecodingforums.com by Unknown author, 2 years ago
via Stack Overflow by toerd
, 1 year agovia GitHub by tolbertam
, 1 year agovia GitHub by akrambek
, 2 years agojava.lang.NumberFormatException: For input string: "1387826685226"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:583)
at java.lang.Integer.parseInt(Integer.java:615)
at com.bolyuba.nexus.plugin.npm.internal.Version.parseSpecialId(Version.java:207)
at com.bolyuba.nexus.plugin.npm.internal.Version.access$300(Version.java:36)
at com.bolyuba.nexus.plugin.npm.internal.Version$Special.
(Version.java:287) at com.bolyuba.nexus.plugin.npm.internal.Version.parseSpecial(Version.java:84)
at com.bolyuba.nexus.plugin.npm.internal.Version.
(Version.java:77) at com.bolyuba.nexus.plugin.npm.internal.Version.parse(Version.java:115)
at com.bolyuba.nexus.plugin.npm.hosted.RecreateMetadataWalkerProcessor.onCollectionExit(RecreateMetadataWalkerProcessor.java:117)
at org.sonatype.nexus.proxy.walker.DefaultWalker.onCollectionExit(DefaultWalker.java:325)
at org.sonatype.nexus.proxy.walker.DefaultWalker.walkRecursive(DefaultWalker.java:226)
at org.sonatype.nexus.proxy.walker.DefaultWalker.walkRecursive(DefaultWalker.java:209)
at org.sonatype.nexus.proxy.walker.DefaultWalker.walkRecursive(DefaultWalker.java:209)
at org.sonatype.nexus.proxy.walker.DefaultWalker.walk(DefaultWalker.java:89)
at com.bolyuba.nexus.plugin.npm.hosted.DefaultNpmHostedRepository.recreateNpmMetadata(DefaultNpmHostedRepository.java:106)
at com.bolyuba.nexus.plugin.npm.task.NpmHostedMetadataRebuildTask.doExecute(NpmHostedMetadataRebuildTask.java:50)
at com.bolyuba.nexus.plugin.npm.task.NpmTaskSupport.doRun(NpmTaskSupport.java:55)
at com.bolyuba.nexus.plugin.npm.task.NpmTaskSupport.doRun(NpmTaskSupport.java:37)
at org.sonatype.nexus.scheduling.AbstractNexusTask.call(AbstractNexusTask.java:151)
at org.sonatype.scheduling.DefaultScheduledTask.call(DefaultScheduledTask.java:418)
at org.sonatype.nexus.threads.MDCAwareCallable.call(MDCAwareCallable.java:44)
at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90)
at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)