NBTReader

public final class NBTReader

A utility class for reading NBT data from various sources

Author

Nullicorn

Functions

Link copied to clipboard
public static NBTCompound read(InputStream inputStream)
Read NBT data from an InputStream
public static NBTCompound read(    InputStream inputStream,     boolean internNames,     boolean internValues)
Same as read, but with additional control over the interning of tag names and values
Link copied to clipboard
public static NBTCompound readBase64(String base64)
Read NBT data from a Base64 string
public static NBTCompound readBase64(    String base64,     boolean internNames,     boolean internValues)
Same as readBase64, but with additional control over the interning of tag names and values
Link copied to clipboard
public static NBTCompound readFile(File nbtFile)
Read NBT data from a file
public static NBTCompound readFile(    File nbtFile,     boolean internNames,     boolean internValues)
Same as readFile, but with additional control over the interning of tag names and values