gpt4 book ai didi

flutter - 尝试在 Flutter 中创建一个新的文本文件

转载 作者:行者123 更新时间:2023-12-02 02:23:47 25 4
gpt4 key购买 nike

我正在尝试创建一个新文件并在 Flutter 中写入它,但我收到一条错误消息:[错误:flutter/lib/ui/ui_dart_state.cc(177)] 未处理的异常:FileSystemException:无法创建文件,路径 = '/data/user/0/com.micharski.d_ball/app_flutter/levels/level101。 json'(操作系统错误:没有这样的文件或目录,errno = 2)

这是我的代码(我正在使用 path_provider 插件):

class LevelFactory {
Level level;
File levelFile;

Future<File> _createLevelFile() async {
Directory appDocDir = await getApplicationDocumentsDirectory();
String appDocPath = appDocDir.path;
File file = File('levels/level101.json');
return file.create();
}

Future<void> createLevel() async {
if(level != null){
level = null;
}
levelFile = await _createLevelFile();
print(levelFile);
}
}

驱动类内部:

var customLvl = new LevelFactory();
customLvl.createLevel();

出于调试目的,我将其添加到 _createLevelFile() 中:

    Directory dir2 = Directory('$appDocPath/levels');
print('DIR2 PATH: ${dir2.absolute}');

我现在的输出是这样的:

I/flutter ( 7990): DIR2 PATH: Directory: '/data/user/0/com.micharski.d_ball/app_flutter/levels'
E/flutter ( 7990): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: FileSystemException: Cannot create file, path = '/data/user/0/com.micharski.d_ball/app_flutter/levels/level101.json' (OS Error: No such file or directory, errno = 2)

最佳答案

Flutter 中的文件路径不能是相对的。移动操作系统会将类似 "levels/level101.json" 的路径解释为无效路径或指向您的应用无权访问的位置的路径。您需要使用类似 path_provider 的插件获取您应用的本地数据文件夹的路径,然后从中构建绝对路径。

import 'package:path_provider/path_provider.dart';

Future<File> _createLevelFile() async {
Directory appDocDir = await getApplicationDocumentsDirectory();
String appDocPath = appDocDir.path;
File file = File('$appDocPath/levels/level101.json');
return await file.create();
}

关于flutter - 尝试在 Flutter 中创建一个新的文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65999078/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com