阅读量:2
在Java中,可以使用File
类来读取根目录文件。根目录可以通过斜杠/
表示。
以下是读取根目录下的文件的示例代码:
import java.io.File; import java.io.FileInputStream; import java.io.IOException; public class ReadRootFile { public static void main(String[] args) { File file = new File("/filename"); // 根目录下的文件名 try (FileInputStream fis = new FileInputStream(file)) { // 读取文件内容 int data; while ((data = fis.read()) != -1) { System.out.print((char) data); } } catch (IOException e) { e.printStackTrace(); } } }
请将上述示例中的/filename
替换为你要读取的根目录下的文件路径。注意,需要提供根目录的绝对路径。
需要注意的是,读取根目录文件可能需要管理员权限或者超级用户权限才能访问。