gpt4 book ai didi

java - 为什么在Java中的文件输入输出代码中出现一些错误?

转载 作者:行者123 更新时间:2023-12-02 11:14:34 27 4
gpt4 key购买 nike

    package newcode;

import java.io.PrintWriter;
import java.io.IOException;
import java.io.File;

public class File {
public static void main(String [] args){
File file =new File("FileName.txt");

上面的行显示错误“构造函数File(String)未定义”
            try{
if(!file.exists()){

上面的这一行显示了一个错误“对于File类型,该方法exist()未定义”
                file.createNewFile();
}

上面的代码行显示错误“为文件类型未定义方法createNewFile()”
            PrintWriter pw= PrintWriter(file);

上面的行之后出现错误“对于文件类型,未定义方法PrintWriter(File)”
            pw.println("File text started here:");
}
catch(IOException e){// here error shows
e.printStackTrace();
}
}
}

最佳答案

重命名您的类(class)。
当您实例化File类时,它认为您正在引用自己的类。

关于java - 为什么在Java中的文件输入输出代码中出现一些错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47992338/

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