您好,登錄后才能下訂單哦!
這篇文章主要介紹“Flutter怎么讀寫文本文件”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“Flutter怎么讀寫文本文件”文章能幫助大家解決問題。
文本文件(具有 .txt擴(kuò)展名)廣泛用于持久存儲(chǔ)信息,從數(shù)字?jǐn)?shù)據(jù)到長文本。今天,我將介紹 2 個(gè)使用此文件類型的 Flutter 應(yīng)用程序示例。
第一個(gè)示例快速而簡單。它僅使用 rootBundle(來自 services.dart)從 assets 文件夾(或根項(xiàng)目中的另一個(gè)文件夾)中的文本加載內(nèi)容,然后將結(jié)果輸出到屏幕上。當(dāng)您只需要讀取數(shù)據(jù)而不需要寫入數(shù)據(jù)時(shí),這很有用。
第二個(gè)例子稍微復(fù)雜一點(diǎn)。它不僅可以讀取用戶輸入的內(nèi)容,還可以將用戶輸入的內(nèi)容寫入文本文件。您將學(xué)習(xí)如何使用File 異步方法, 包括readAsString和writeAsString。
此示例包含一個(gè)文本小部件和一個(gè)浮動(dòng)按鈕。當(dāng)這個(gè)按鈕被按下時(shí),函數(shù) _loadData將被觸發(fā)并從文件中加載內(nèi)容。
將文本文件添加到您的項(xiàng)目中
在項(xiàng)目根目錄的資產(chǎn)文件夾中創(chuàng)建一個(gè)名為data.txt的新文本文件(如果尚不存在,則創(chuàng)建一個(gè)),并向其添加一些虛擬內(nèi)容,如下所示:
個(gè)人簡介:華為云享專家,InfoQ簽約作者,51CTO博客首席體驗(yàn)官,專注于前端技術(shù)的分享,包括Flutter,小程序,安卓,VUE,JavaScript。如果你迷茫,不妨來瞅瞅碼農(nóng)的軌跡,
不要忘記在pubspec.yaml文件中注冊(cè)assets文件夾:
flutter: assets: - assets/
將以下內(nèi)容添加到您的main.dart:
// main.dart import 'package:flutter/material.dart'; import 'package:flutter/services.dart' show rootBundle; import 'dart:async'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, title: '堅(jiān)果', home: HomePage(), ); } } class HomePage extends StatefulWidget { @override _HomePageState createState() => _HomePageState(); } class _HomePageState extends State<HomePage> { String _data; // This function is triggered when the user presses the floating button Future<void> _loadData() async { final _loadedData = await rootBundle.loadString('assets/data.txt'); setState(() { _data = _loadedData; }); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('堅(jiān)果'), ), body: Center( child: Container( width: 300, child: Text(_data != null ? _data : 'Nothing to show', style: TextStyle(fontSize: 24)))), floatingActionButton: FloatingActionButton(onPressed: _loadData, child: Icon(Icons.add)), ); } }
出于安全原因,Android 和 iOS 不允許我們?cè)谟脖P驅(qū)動(dòng)器上的任何位置進(jìn)行讀寫。我們需要將文本文件保存到Documents目錄中,應(yīng)用程序只能在該目錄中訪問其文件。只有在刪除應(yīng)用程序時(shí)才會(huì)刪除這些文件。
該文件目錄是NSDocumentDirectory iOS和應(yīng)用程序數(shù)據(jù)在Android上。要獲取該目錄的完整路徑,我們使用path_provider包(這是 Flutter 的官方包)。
通過將path_provider及其版本添加到pubspec.yaml文件的依賴項(xiàng)部分來安裝包,如下所示:
dependencies: path_provider: ^2.0.8
然后運(yùn)行以下命令:
flutter pub get
并找到如下路徑:
import 'package:path_provider/path_provider.dart'; /* .... */ Future<String> get _getDirPath async { final _dir = await getApplicationDocumentsDirectory(); return _dir.path; }
此示例應(yīng)用程序有一個(gè) TextFiled,允許用戶輸入他/她的姓名以寫入文本文件。它還包含一個(gè)文本小部件,顯示從該文件讀取的名稱。
在此示例中,我們不需要手動(dòng)創(chuàng)建文本文件并將其添加到項(xiàng)目中。第一次寫入數(shù)據(jù)時(shí)會(huì)自動(dòng)創(chuàng)建。
這是我們的main.dart 中的代碼:
// main.dart import 'dart:convert'; import 'package:flutter/material.dart'; import 'dart:async'; import 'dart:io'; import 'package:path_provider/path_provider.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, title: '堅(jiān)果', home: HomePage(), ); } } class HomePage extends StatefulWidget { @override _HomePageState createState() => _HomePageState(); } class _HomePageState extends State<HomePage> { // This will be displayed on the screen String _content; // Find the Documents path Future<String> _getDirPath() async { final _dir = await getApplicationDocumentsDirectory(); return _dir.path; } // This function is triggered when the "Read" button is pressed Future<void> _readData() async { final _dirPath = await _getDirPath(); final _myFile = File('$_dirPath/data.txt'); final _data = await _myFile.readAsString(encoding: utf8); setState(() { _content = _data; }); } // TextField controller final _textController = TextEditingController(); // This function is triggered when the "Write" buttion is pressed Future<void> _writeData() async { final _dirPath = await _getDirPath(); final _myFile = File('$_dirPath/data.txt'); // If data.txt doesn't exist, it will be created automatically await _myFile.writeAsString(_textController.text); _textController.clear(); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('堅(jiān)果'), ), body: Padding( padding: const EdgeInsets.all(20), child: Column( children: [ TextField( controller: _textController, decoration: InputDecoration(labelText: 'Enter your name'), ), ElevatedButton( child: Text('Save to file'), onPressed: _writeData, ), SizedBox( height: 150, ), Text( _content != null ? _content : 'Press the button to load your name', style: TextStyle(fontSize: 24, color: Colors.pink)), ElevatedButton( child: Text('Read my name from the file'), onPressed: _readData, ) ], ), ), ); } }
關(guān)于“Flutter怎么讀寫文本文件”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。