gpt4 book ai didi

java - 编译器找不到类 Files 的方法

转载 作者:行者123 更新时间:2023-12-01 20:55:15 25 4
gpt4 key购买 nike

所以我应该编写一个小程序来在文件中写入反向字母表,但由于某种原因编译器无法识别文件类的任何方法。

这是我的代码:

import java.io.*;
import java.nio.*;
import java.nio.channels.*;
import java.nio.file.*;
import static java.nio.file.StandardOpenOption.*;

class Exercise {
Path file = Paths.get("C:\\Users\\schuele\\Documents\\GitProjects\\3hit-Grual\\RandomAccess\\Alphabet.txt");
byte[] data;
ByteBuffer out;

if(Files.exists(file)){

}
}

奇怪的是,编译器可以找到类 Files 而不是它的方法。

编译后我收到此消息:

Error:(17, 4) java: illegal start of type
Error:(17, 19) java: <identifier> expected
Error:(17, 20) java: ';' expected
Error:(17, 21) java: illegal start of type
Error:(17, 22) java: <identifier> expected
Error:(17, 23) java: ';' expected

错误全部发生在第 17 行,即使用 Files 类的行。

最佳答案

您在方法之外编写 if block 。请添加方法或构造函数。

关于java - 编译器找不到类 Files 的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42483654/

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