如何从Dart中的Json创建zip文件?

时间:2019-04-23 09:41:26

标签: dart archive

我已经下载了Dart archive软件包,但是文档有点空白。我有一个对象,需要以文件格式进行序列化,然后将其压缩为zip。

到目前为止,这是我设法写的,但是没有用。

  static Future<List<int>> convertMeetingsListToZip(List<Meeting> list) async {
    return File('meetings.zip')
        .writeAsString(jsonEncode(list))
        .then((File encodedFile) {
      Archive archive = new Archive();
      archive.addFile(new ArchiveFile(
          encodedFile.path, encodedFile.lengthSync(), encodedFile));
      return ZipEncoder().encode(archive);
    });
  }

你能帮我吗?

1 个答案:

答案 0 :(得分:1)

没关系,我做到了。方法如下:

static List<int> convertListToZip(List<dynamic> list) {
   String jsonEncoded = jsonEncode(list);
   List<int> utf8encoded = utf8.encode(jsonEncoded);
   ArchiveFile jsonFile =
       new ArchiveFile("filename.json", utf8encoded.length, utf8encoded);
   Archive zipArchive = new Archive();
   zipArchive.addFile(jsonFile);
   List<int> zipInBytes = new ZipEncoder().encode(zipArchive);
   return zipInBytes;
}

要点是先将文件编码为字节(用utf8.encode进行编码,然后再将其包装到存档中并进行编码。