在Android,JSON中将字符串转换为Int

这个问题在这里已经有了答案:

  • 如何在Java中将字符串转换为int? 30个答案

  • 简单如下:

    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

    上一篇: Converting String to Int in Android, JSON

    下一篇: Java : convert a String to Int (Unknown Source)