如何将String []或Object []的组件转换为其他类型

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

  • 如何在Java中将字符串转换为int? 30个答案
  • Java - 将整数转换为字符串[重复] 7个答案

  • 你可以使用Integer.parseInt()而没有问题。

    int i = input[0] // i is an int while input[0] is a String
    

    现在

    int i=Integer.parseInt(input[0])
    

    String转换为int

    的Integer.parseInt()

    链接地址: http://www.djcxy.com/p/20931.html

    上一篇: How to convert component of String[] or Object[] to other type

    下一篇: Getting an information about type of input ( main args )