gpt4 book ai didi

java - java中数组索引越界

转载 作者:行者123 更新时间:2023-12-02 04:28:42 25 4
gpt4 key购买 nike

package com.testing;

import java.io.BufferedReader;
import java.io.FileReader;

public class CsvParser {
public static void main(String[] args) {
String csvFile = "D:/code-home/SentimentAnalysis/test_data/Sentiment Analysis Dataset.csv";
BufferedReader br = null;
String line = "";
String cvsSplitBy = "\t";

br = new BufferedReader(new FileReader(csvFile));
while ((line = br.readLine()) != null) {
// use comma as separator
String []tweet = line.split(cvsSplitBy);
System.out.println(tweet[1]);
System.out.println(tweet[3]);
}
}

该程序的目的是解析 CSV 格式。我使用了 bufferRead 方法。

当我去编译程序时,它工作正常。当我运行该程序时,出现错误,

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
at com.testing.CsvParser.main(CsvParser.java:34)

最佳答案

您应该使用逗号分隔符。

改变

String cvsSplitBy = "\t";

String cvsSplitBy = ",";

关于java - java中数组索引越界,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31806753/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com