如何指定路径以读取资产目录中的 .txt 文件
How to specify path to read a .txt file in assets directory
我想获取有关所选港口的详细信息,方法是从使用 .txt 文件中的 readLines 提取的列表中获取 val s,其中每个港口在资产目录中都有一个 .txt 文件。我生成了文件名,但是当应用程序在模拟器中为 运行 时,我收到一个找不到文件的错误。
在这种情况下,我试图获取一个名为 Brehatharm.txt
的文件
var portChosen = "Brehat"
//"tide2a/app/src/main/assets/"+//various paths to try
fileName = "assets/"+portChosen+"harm.txt"
val harmConsList:List<String> = File(fileName).readLines()
val portDisplayName = harmConsList[0]
val longTude = harmConsList[1]
val MTL =harmConsList[2]
etc,
日志猫读取:-
2021-01-10 15:40:34.044 7108-7108/com.example.tide2a E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.tide2a, PID: 7108
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.tide2a/com.example.tide2a.MainActivity}: java.io.FileNotFoundException: assets/Brehatharm.txt: open failed: ENOENT (No such file or directory)
文件的完整 windows 路径是:-
C:\Users.......\OneDrive\Coding projects\tide2a\app\src\main\assets\Brehatharm.txt
我确定文件在那里,并且拼写正确,所以我怀疑我指定的路径不正确。请多多指教。
无法使用文件 class 访问 assets/
中的文件。使用 context.assets
获取 AssetManager,您可以打开文件的 InputStreams。
我想获取有关所选港口的详细信息,方法是从使用 .txt 文件中的 readLines 提取的列表中获取 val s,其中每个港口在资产目录中都有一个 .txt 文件。我生成了文件名,但是当应用程序在模拟器中为 运行 时,我收到一个找不到文件的错误。 在这种情况下,我试图获取一个名为 Brehatharm.txt
的文件 var portChosen = "Brehat"
//"tide2a/app/src/main/assets/"+//various paths to try
fileName = "assets/"+portChosen+"harm.txt"
val harmConsList:List<String> = File(fileName).readLines()
val portDisplayName = harmConsList[0]
val longTude = harmConsList[1]
val MTL =harmConsList[2]
etc,
日志猫读取:-
2021-01-10 15:40:34.044 7108-7108/com.example.tide2a E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.tide2a, PID: 7108
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.tide2a/com.example.tide2a.MainActivity}: java.io.FileNotFoundException: assets/Brehatharm.txt: open failed: ENOENT (No such file or directory)
文件的完整 windows 路径是:- C:\Users.......\OneDrive\Coding projects\tide2a\app\src\main\assets\Brehatharm.txt
我确定文件在那里,并且拼写正确,所以我怀疑我指定的路径不正确。请多多指教。
无法使用文件 class 访问 assets/
中的文件。使用 context.assets
获取 AssetManager,您可以打开文件的 InputStreams。