dart_minecraft icon indicating copy to clipboard operation
dart_minecraft copied to clipboard

FormatException: Encoded surrogate (at offset 12)

Open HuyNguyen1590 opened this issue 1 year ago • 3 comments

Please check this nbt file minecraft_building.zip When i using visual code to read, it all fine. The endianness is little. Screenshot 2024-09-27 at 17 17 45 Screenshot 2024-09-27 at 17 17 54 But the code below return the error: FormatException: Encoded surrogate (at offset 12) var result = await FilePicker.platform.pickFiles(allowMultiple: false); File f = File(result!.files.first.path!); final nbtReader = NbtReader.fromFile(f.path); nbtReader.setEndianness = Endian.little; nbtReader.read(); NbtCompound rootNode = nbtReader.root!;

HuyNguyen1590 avatar Sep 27 '24 10:09 HuyNguyen1590