gpt4 book ai didi

java - 扫描仪不断抛出 FileNotFoundException

转载 作者:行者123 更新时间:2023-11-29 09:54:14 32 4
gpt4 key购买 nike

<分区>

我正在尝试将名为 SPY.txt 的文件加载到一个数组中,但我什至无法让这个小片段工作。

我不明白。如果 f.existstrue,Scanner 如何抛出文件未找到异常?

import java.io.*;
import java.util.Scanner;

public class ScannerTest {
public static void main(String[] args) {
File f = new File (new File("SPY.txt").getAbsolutePath());
System.out.println(f.exists());
Scanner s = new Scanner(f);
}
}

输出:

Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - unreported exception java.io.FileNotFoundException; must be caught or declared to be thrown at scannertest.ScannerTest.main(ScannerTest.java:13)

第13行是

扫描仪 s = new Scanner(f);

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