dart_minecraft
dart_minecraft copied to clipboard
FormatException: Encoded surrogate (at offset 12)
Please check this nbt file
minecraft_building.zip
When i using visual code to read, it all fine. The endianness is little.
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!;