0

ソース コードと同じフォルダーにあるコンピューターからファイルを読み込もうとしていますが、コードを実行すると、「ファイルが存在しません」と表示されます。

import java.io.*;
import java.util.*;
public class Lotto1 {
  static String[][] arr;
  static String name, number;
  public static void main(String[] args) throws IOException {
    File f = new File("D:\\Filipe\\Project Final\\src\\database_lotto.txt.txt");
    Scanner s;
    try {
      s = new Scanner(f);
      BufferedReader reader = new BufferedReader(new FileReader(f));
      int lines = 0;
      while(reader.readLine() != null) {
        lines++;
      }
      reader.close();
      arr = new String[lines][3];
      int count = 0;
      //while theres still another line
      while(s.hasNextLine()) {
        arr[count][0] = s.next() + "" + s.next();
        arr[count][1] = s.next();
        arr[count][2] = s.next();
        count++;
      }
    } catch(FileNotFoundException ex) {
      System.out.println("File does not exist");
    }
4

2 に答える 2

0

あなたがやろうとしていることを推測して再コーディングしましたが、この実装は、あなたが言う場所にある場合、ファイルを読み取ります。

public static void main(String[] args) {
    final String filename = "database_lotto.txt";
    final File lottoFile = new File(filename);

    try (final Scanner scanner = new Scanner(lottoFile)) {
        final List<String[]> storage = new ArrayList<String[]>();
        while (scanner.hasNextLine()) {
            storage.add(scanner.nextLine().split(" "));
        }
    }catch (FileNotFoundException ex) {
        System.out.println("File not found :(");
    }
}
于 2013-04-06T23:09:58.697 に答える