// 没有指定默认值,将返回 Optional Optional value = nbt.getInt("value"); // 注意不是 OptionalInt // 指定默认值,当对应字段不存在时返回这个默认值 int value = nbt.getInt("value", 1000);