Skip to content

read double value by BigDecimal #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "read double value by BigDecimal"
This reverts commit ec7bb60.
  • Loading branch information
t-mangoe committed Apr 13, 2019
commit 24f9551387c4bb0daf813f537867bfadb542bb35
12 changes: 4 additions & 8 deletions src/main/java/com/jsoniter/IterImpl.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
package com.jsoniter;

import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;

import com.jsoniter.any.Any;
import com.jsoniter.spi.JsonException;
import com.jsoniter.spi.Slice;

import java.io.IOException;
import java.math.BigInteger;

class IterImpl {

private static BigInteger maxLong = BigInteger.valueOf(Long.MAX_VALUE);
Expand Down Expand Up @@ -470,10 +469,7 @@ static final double readDouble(final JsonIterator iter) throws IOException {
decimalPart = -decimalPart;
int decimalPlaces = iter.head - start;
if (decimalPlaces > 0 && decimalPlaces < IterImplNumber.POW10.length && (iter.head - oldHead) < 10) {
BigDecimal integerPart = new BigDecimal(value);
BigDecimal fractionalPart = new BigDecimal((decimalPart / (double) IterImplNumber.POW10[decimalPlaces]));
BigDecimal result = integerPart.add(fractionalPart).setScale(decimalPlaces,BigDecimal.ROUND_HALF_UP);
return result.doubleValue();
return value + (decimalPart / (double) IterImplNumber.POW10[decimalPlaces]);
} else {
iter.head = oldHead;
return IterImplForStreaming.readDoubleSlowPath(iter);
Expand Down