Android 應用程式可以存取和讀取外部文字檔案嗎?
在 Android 應用開發中,您可能會遇到需要從外部文字擷取資料的情況檔案。但是,在存取應用程式沙盒環境之外的文件時需要考慮一些限制。要成功讀取文字文件,將它們放置在適當的位置並使用正確的程式碼至關重要。
在哪裡找到您的文字檔案
您提供的程式碼片段嘗試從電腦本機檔案系統特定的路徑(例如「E:testsrccomtestmani.txt」)讀取取“mani.txt”檔。 Android 應用程式無法存取此路徑。
正確的文件放置
要存取 Android 中的外部文字文件,您應該將它們放置在裝置上的適當目錄中貯存。一個常見位置是「外部儲存」目錄,可透過 Environment.getExternalStorageDirectory() 存取。
在此目錄中,您可以為應用程式特定的檔案建立一個資料夾,或將文字檔案直接放置在根目錄中。確保檔案命名正確以匹配程式碼中的引用。
建議程式碼
這是一個修改過的程式碼區塊,示範如何從外部讀取文字檔案儲存:
String path = Environment.getExternalStorageDirectory() + "/path/to/your_file.txt"; try { File myFile = new File(path); FileInputStream fIn = new FileInputStream(myFile); BufferedReader myReader = new BufferedReader(new InputStreamReader(fIn)); String line; while ((line = myReader.readLine()) != null) { // Process the line of text } myReader.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }
以上是Android 應用程式如何存取和讀取外部文字檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!