gpt4 book ai didi

java - 从另一个目录读取 .txt 文件

转载 作者:行者123 更新时间:2023-11-29 08:15:27 26 4
gpt4 key购买 nike

我正在运行的代码在 /Test1/Example 中。如果我需要读取 /Test1 中的 .txt 文件,我如何让 Java 返回目录树中的 1 级,然后读取我的 .txt 文件

我进行了搜索/谷歌搜索,但未能找到读取不同位置文件的方法。

我在位于/Test1/Test2/testing.htm 的 .htm 文件中运行 java 脚本。它说脚本 src=""。我会在引号中放什么让它从位于 /Test1/example.txt 的文件中读取。

最佳答案

在 Java 中,您可以使用 getParentFile() 向上遍历树。所以你在/Test1/Example 目录中启动了你的程序。并且您想将新文件写为/Test1/Example.txt

    File currentDir = new File(".");
File parentDir = currentDir.getParentFile();
File newFile = new File(parentDir,"Example.txt");;

显然有多种方法可以做到这一点。

关于java - 从另一个目录读取 .txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5168515/

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