在 Android 中读取文本文件:对从 mani.txt 读取时出现的异常进行故障排除
您在尝试读取文本文件时遇到异常Android 应用程序中名为“mani.txt”的文本文件。出现此错误的原因是代码在错误的位置搜索文件。
要在 Android 中成功读取文本文件,您需要首先将该文件放置在应用程序文件夹中的适当位置。您指定的路径(“E:testsrccomtestmani.txt”)对于 Android 应用程序来说不是有效路径。
在 Android 中读取文本文件的推荐方法是使用 InputStream 类打开文件流并阅读其内容。但是,文件的路径必须正确才能使此方法发挥作用。
您应该使用 openFileInput(String fileName) 方法打开指向文件中文件的流,而不是使用硬编码的绝对路径。应用程序文件夹。此方法将文件名作为参数并打开相应的流。
这是一个改进的代码示例,从应用程序文件夹中读取文件“mani.txt”:
try { InputStream instream = openFileInput("mani.txt"); // Opens a stream to the file "mani.txt" if (instream != null) { InputStreamReader inputreader = new InputStreamReader(instream); // Creates an InputStreamReader to read from the stream BufferedReader buffreader = new BufferedReader(inputreader); // Creates a BufferedReader to read the data String line, line1 = ""; try { while ((line = buffreader.readLine()) != null) // Read each line line1 += line; // Append each line to the final string } catch (Exception e) { e.printStackTrace(); // Handle any exceptions that may occur } } } catch (Exception e) { String error = e.getMessage(); // Handle the exception if the file could not be found or opened }
这个代码假定“mani.txt”文件位于应用程序文件夹中。如果需要从不同位置读取文件,可以使用Environment.getExternalStorageDirectory()方法获取外部存储目录的路径。
或者,您也可以使用AssetManager类来读取文件从应用程序的资产文件夹中。如果您想在应用程序包中包含文件并在运行时读取它们,则此方法更合适。
以上是Android中如何正确读取文本文件并排除常见异常?的详细内容。更多信息请关注PHP中文网其他相关文章!