在Android,JSON中将字符串转换为Int
这个问题在这里已经有了答案:
简单如下:
int i = Integer.parseInt(yourString);
或者,对于花车:
float f = Float.parseFloat(yourString);
您可以使用
int value = Integer.parseInt(Budget);
http://docs.oracle.com/javase/7/docs/api/java/lang/Integer.html#parseInt(java.lang.String)
如果Budge
t不是有效的int
,它会抛出一个NumberFormatException
异常。
try {
int value = Integer.parseInt(Budget);
}catch(NumberFormatException e) {
e.printStackTrace();
}
将您的字符串值传递给Integer
类的parseInt()
方法...您将获得给定字符串值的转换值。
int budget = Integer.parseInt(budget_event);
链接地址: http://www.djcxy.com/p/20927.html