You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. put really large decimal number with also small parts in json input
2. parse
3. encode
4. detail is lost and/or formatting changes to scientific notation (which is
not exactly a defect)
What is the expected output? What do you see instead?
I'd like the numberical value to be preserved, with precision information if
possible
What version of the product are you using? On what operating system?
1.1.1 java6 and 7
Please provide any additional information below.
Patch is simple as one only need to replace Double handling with
yylex.java:608
{ BigDecimal val=new BigDecimal(yytext()); return new
Yytoken(Yytoken.TYPE_VALUE, val);
Original issue reported on code.google.com by [email protected] on 2 Jun 2012 at 11:02
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 2 Jun 2012 at 11:02The text was updated successfully, but these errors were encountered: