在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中文網其他相關文章!