public class FileServer {
public static void main(String[] args) {
try {
File file = new File("data.txt");
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
String s = scanner.nextLine();
System.out.println(s);
}
scanner.close();
} catch (FileNotFoundException e) {
System.out.println(e);
e.printStackTrace();
}
}
}
public class GetFileInfo {
public static void main(String[] args) {
File file = new File("filename.txt");
if (file.exists()) {
System.out.println("File name: " + file.getName());
System.out.println("Absolute path: " + file.getAbsolutePath());
System.out.println("Writeable: " + file.canWrite());
System.out.println("Readable: " + file.canRead());
System.out.println("File size in bytes: " + file.length());
} else{
System.out.println("The file does not exist.");
}
}
}
标签:scanner,文件,Java,File,System,file,println,out From: https://www.cnblogs.com/zjy4fun/p/16729496.html