字符串不能转换为整数,整数也不能转换为字符串
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过
String port = getHttpPort(param).toString();
?
Did you try
String port = getHttpPort(param).toString();
?
toString()
存在于 Java 的每个类中。因此将其更改为
Now,这将适用于实现 toString() 的场景。
toString()
is present in every class in Java. So change thisto
Now, this will work for the scenarios where toString() is implemented .