gpt4 book ai didi

java - rest - java 16 位数字数据类型

转载 作者:行者123 更新时间:2023-12-01 17:54:50 25 4
gpt4 key购买 nike

我想知道我的rest api中的16位数字应该使用什么数据类型,因为Integer会返回400错误请求,我必须将其修改为另一种数据类型,

org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver.handleTypeMismatch Failed to bind request element: org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type [java.lang.String] to required type [java.lang.Integer]; nested exception is java.lang.NumberFormatException: For input string: "1111111111111111"

谢谢。

最佳答案

您可以简单地将其接受为String x,然后将其转换为 BigInteger

BigInteger bigInt = new BigInteger(x);

关于java - rest - java 16 位数字数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46046976/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com