NbtLib
Library to work with Named Binary Tag (NBT) data
Install / Use
/learn @sguest/NbtLibREADME
NbtLib
.NET library to work with NBT data.
NBT specification can be found here. Somewhat more technical specification here but it is older and missing a couple of the newer tag types (Int array and long array).
Installation
Get it from Nuget
Install-Package NbtLib
Basic usage
Raw NBT
Reading
using (var inputStream = System.IO.File.OpenRead("inputfile.nbt")) {
var nbtData = NbtConvert.ParseNbtStream(inputStream);
}
Writing
var nbtTag = new NbtCompoundTag();
var outputStream = NbtConvert.CreateNbtStream(nbtTag);
In addition to the static helper methods, it is possible to use the NbtParser and NbtWriter classes directly.
According to the specification, NBT files should be GZipped.
Parser functions will handle both compressed and uncompressed data.
Writing functions will generate data that has been GZipped. Companion methods with Uncompressed in the name exist to create output streams without compressing the data.
(De)serialization
Reading
using (var inputStream = System.IO.File.OpenRead("inputfile.nbt")) {
var myObject = NbtConvert.DeserializeObject<MyClass>(inputStream);
}
var tag = new NbtCompoundTag();
var myObject = NbtConvert.DeserializeObject<MyClass>(tag);
Writing
var myObject = new MyClass();
Stream outputStream = NbtConvert.SerializeObject(myObject);
NbtCompundTag tag = NbtConvert.SerializeObjectToTag(myObject);
In addition to the static helper methods, it is possible to use the NbtDeserializer and NbtSerializer classes directly.
(De)serialization can be further customized with the NbtIgnore or NbtProperty attributes, and/or by using NbtSerializerSettings
class MyClass
{
// this property will not be populated by the deserializer
// this property will not appear in serialized output
[NbtIgnore]
public string Ignored { get; set; }
// this property will have the tag name TagName in the output, or will be read from a tag named TagName
// this property will be serialized to a List tag with TagType Int instead of the default behavior of IntArray
// if this list is empty, the tag type will be End instead of Int
[NbtProperty(PropertyName="TagName", UseArrayType=false, EmptyListAsEnd=true)]
public List<int> CustomizedProperty { get; set; }
}
var myObject = new MyClass();
var settings = new NbtSerializerSettings();
Stream outputStream = NbtConvert.SerializeObject(myObject, settings);
Available Settings
UseArrayTypes (Default true) If true, IEnumerables (including arrays) of byte, int, and long will be serialized to the corresponding array tag type. If false, they will be serialized to List tags
EmptyListAsEnd (Default: false) If true, empty IEnumerables that are serialized to lists will have their tag type set to Empty
NamingStrategy (Default: DefaultNamingStrategy) Object implementing INamingStrategy that will be used to format tag names. Default implementation leaves names unchanged.
Formatting
All tags return sensible values when calling ToString(), and can also return a formatted JSON representation via ToJsonString().
One of the easiest ways to get a reasonable representation of a NBT file is to parse it to a NbtCompoundTag then call ToJsonString.
License
MIT license
Related Skills
node-connect
354.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
112.2kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
354.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
354.0kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
