将字符串数组转换为整数数组

所以基本上用户从扫描仪输入输入一个序列。
它可以是任何长度的长,并且必须是整数。
我想将字符串输入转换为整数数组。
会是 会是 ,等等。12, 3, 4int[0]12int[1]3

任何提示和想法?我正在考虑实现获取以前的数字并将它们解析在一起并将其应用于数组中的当前可用插槽。但我不太确定如何编码。if charat(i) == ','


答案 1

您可以从扫描仪读取整个输入行,然后将该行拆分,然后您有一个,将每个数字解析为索引一对一匹配...(假设输入有效且无),String[]int[]NumberFormatExceptions

String line = scanner.nextLine();
String[] numberStrs = line.split(",");
int[] numbers = new int[numberStrs.length];
for(int i = 0;i < numberStrs.length;i++)
{
   // Note that this is assuming valid input
   // If you want to check then add a try/catch 
   // and another index for the numbers if to continue adding the others (see below)
   numbers[i] = Integer.parseInt(numberStrs[i]);
}

正如YoYo的回答所暗示的那样,上述内容可以在Java 8中更简洁地实现:

int[] numbers = Arrays.stream(line.split(",")).mapToInt(Integer::parseInt).toArray();  

处理无效输入

在这种情况下,您需要考虑需要做什么,您是否想知道该元素的输入有不良还是只是跳过它。

如果您不需要知道无效输入,而只想继续解析数组,则可以执行以下操作:

int index = 0;
for(int i = 0;i < numberStrs.length;i++)
{
    try
    {
        numbers[index] = Integer.parseInt(numberStrs[i]);
        index++;
    }
    catch (NumberFormatException nfe)
    {
        //Do nothing or you could print error if you want
    }
}
// Now there will be a number of 'invalid' elements 
// at the end which will need to be trimmed
numbers = Arrays.copyOf(numbers, index);

我们应该修剪结果数组的原因是,末尾的无效元素将由 表示,这些元素需要被删除才能区分的有效输入值。int[]00

结果在

输入: “2,5,6,坏,10”
输出: [2,3,6,10]

如果您以后需要了解无效输入,可以执行以下操作:

Integer[] numbers = new Integer[numberStrs.length];
for(int i = 0;i < numberStrs.length;i++)        
{
    try 
    {
        numbers[i] = Integer.parseInt(numberStrs[i]);
    }
    catch (NumberFormatException nfe)   
    {
        numbers[i] = null;
    }
}

在这种情况下,错误的输入(不是有效的整数),元素将为 null。

结果在

输入: “2,5,6,坏,10”
输出: [2,3,6,空,10]


您可以通过不捕获异常来提高性能(有关此问题的详细信息,请参阅此问题),并使用其他方法来检查有效的整数。


答案 2

逐行

int [] v = Stream.of(line.split(",\\s+"))
  .mapToInt(Integer::parseInt)
  .toArray();