-2
私のプログラムは、CSVファイルを持つURLを取得することです。これをファイルに渡してさらにクエリを実行しようとしていますが、NoSuchElementExceptionが返されます。CSVをJavaを使用してファイルにダウンロードする方法
public static void main(String[] args) throws ParseException, IOException, URISyntaxException {
// TODO Auto-generated method stub
String web = "https://example.com/data.csv";
URL content = new URL(web);
File file = new File(content.getPath());
try {
Scanner inputStream = new Scanner(file); //Input file
String[] values = data.split(",");
while (inputStream.hasNext()){
data = inputStream.next();
values = data.split(",");
System.out.println(values[];
}
inputStream.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
ファイルのパスが間違っています。 –