我有一个返回类型是字符串的方法,下面是该方法
public String getHwIdentifier();
现在我正在使用这种方法..
String s = till.getHwIdentifier();//return type of this method is string
我想将其转换为整数,就像这样
Int i = till.getHwIdentifier();
请告知取整数的方式表示如何转换它。
最佳答案
尝试从Integer类解析parseInt。
Integer.parseInt(till.getHwIdentifier());
但请注意,如果字符串不是有效的整数表示形式,则会抛出
NumberFormatException
关于java - 关于结果的转换,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13157198/