Lovelyxredxpanda / json-simple

Automatically exported from code.google.com/p/json-simple
Apache License 2.0
0 stars 0 forks source link

NumberFormatException on numbers greater than Long.MAX_VALUE. #57

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Loading documents with numbers greater than Long.MAX_VALUE currently throws a 
NumberFormatException unchecked exception. I'd probably be preferable to have 
the parser generate a BigInteger instead, as the current behavior stops parsing 
entirely.

java.lang.NumberFormatException: For input string: 
"213991133777039355058536718668104339937"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
at java.lang.Long.parseLong(Long.java:422)
at java.lang.Long.valueOf(Long.java:525)
at org.json.simple.parser.Yylex.yylex(Unknown Source)
at org.json.simple.parser.JSONParser.nextToken(Unknown Source)
at org.json.simple.parser.JSONParser.parse(Unknown Source)
at org.json.simple.parser.JSONParser.parse(Unknown Source)
at org.json.simple.parser.JSONParser.parse(Unknown Source)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.loadJSONFromDisk(LazyLocalDis
kDocumentStore.java:115)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.loadDocumentFromDisk(LazyLoca
lDiskDocumentStore.java:135)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:259)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.collectDocuments(LazyLocalDis
kDocumentStore.java:252)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStore.all(LazyLocalDiskDocumentStor
e.java:242)
at 
org.tgen.cortexio.store.LazyLocalDiskDocumentStoreTest.testCount(LazyLocalDiskDo
cumentStoreTest.java:44)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.jav
a:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java
:44)
at 
org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:
15)
at 
org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:4
1)
at 
org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20
)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
at 
org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.ja
va:79)
at 
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71
)
at 
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49
)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
at 
org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReferen
ce.java:50)
at 
org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner
.java:467)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner
.java:683)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java
:390)
at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.jav
a:197)

Original issue reported on code.google.com by conmo...@gmail.com on 25 Oct 2011 at 5:24

GoogleCodeExporter commented 9 years ago

Original comment by fangyid...@gmail.com on 29 Nov 2011 at 2:53

GoogleCodeExporter commented 9 years ago
Technically, Issue 73 duplicates this issue, but I'm marking it the other way 
around because #73 includes a patch.

Original comment by jon.cham...@gmail.com on 10 Aug 2013 at 5:01