将BigInteger类型的数字转换为字符串后再传递到JSON对象中。
代码示例:
import org.json.JSONObject; import java.math.BigInteger;
public class JSONWithBigInteger { public static void main(String[] args) { BigInteger bigInt = new BigInteger("12345678901234567890");
JSONObject jsonObject = new JSONObject();
jsonObject.put("bigIntValue", bigInt.toString());
System.out.println(jsonObject.toString());
}
}
输出结果:
{"bigIntValue":"12345678901234567890"}