我正在尝试运行简单的hello word Java程序,并且想要登录世界。 但是我得到
的错误该语句上的“程序包java.util.logging无法访问”
import java.util.logging.*;
蚀。
我正在使用Java 11版本
在下面填写代码
package myproject;
import java.io.Console;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.logging.Logger;
import java.util.logging.*;
public class FileOperations {
public static void main(String[] args) {
// Create a Logger
Logger logger = Logger.getLogger(FileOperations.class.getName());
// Call info method
logger.info("This is message 1");
// TODO Auto-generated method stub
File file=new File("myFile.txt");
FileOutputStream fos;
try {
fos = new FileOutputStream(file);
fos.write(2);
System.out.println("File operation completed");
Logger.log(Level.INFO, "My first Log Message");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
答案 0 :(得分:0)
也许创建Logger对象有问题?
Logger logger = Logger.Leve
似乎还没有完成。
答案 1 :(得分:0)
如果您有module-info.java文件,请添加
requires java.logging;