字符串不能转换为整数,整数也不能转换为字符串

发布于 2024-12-27 21:20:14 字数 525 浏览 1 评论 0原文

getHttpPort 方法返回从 JSON 数据查询派生的 Object 类型。 Object 的值可以是空白字符串或整数值。为了安全起见,我认为我可以将它表示为这样的字符串:

String port = (String)getHttpPort(param);

但这有时会产生错误:

Integer cannot be cast to a String.

所以我尝试了这个:

String port = ((Integer)getHttpPort(param).toString();

但现在我得到了相反的错误:

String cannot be cast to an Integer.

表示 < 返回结果的正确方法是什么code>getHttpPort 方法作为字符串?

The getHttpPort method returns an Object type derived from a JSON data query. The value of the Object could be a blank string or an Integer value. To be on the safe side I thought I could represent it as a String like this:

String port = (String)getHttpPort(param);

But this sometimes generates the error:

Integer cannot be cast to a String.

So I tried this:

String port = ((Integer)getHttpPort(param).toString();

But now I get the reverse error:

String cannot be cast to an Integer.

What's the proper way to represent the returned result of the getHttpPort method as a String?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜光 2025-01-03 21:20:14

您是否尝试过

String port = getHttpPort(param).toString();

Did you try

String port = getHttpPort(param).toString();

?

爱你是孤单的心事 2025-01-03 21:20:14

toString() 存在于 Java 的每个类中。因此将其更改

String port = ((Integer)getHttpPort(param).toString();

String port = getHttpPort(param).toString();

Now,这将适用于实现 toString() 的场景。

toString() is present in every class in Java. So change this

String port = ((Integer)getHttpPort(param).toString();

to

String port = getHttpPort(param).toString();

Now, this will work for the scenarios where toString() is implemented .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文