2728293031323334353637
private Object parseLong() throws IOException { Value val = mp.readValue(); try { Long l = val.asIntegerValue().getLong(); return l; } catch (Exception ex) { BigInteger bi = new BigInteger(val.asRawValue().getString()); }
2829303132333435363738
private Object parseLong() throws IOException { Value val = mp.readValue(); try { return val.asIntegerValue().getLong(); } catch (Exception ex) { BigInteger bi = new BigInteger(val.asRawValue().getString()); }