gpt4 book ai didi

java - java bukkit 将字符串转换为 ItemStack

转载 作者:行者123 更新时间:2023-12-01 18:31:22 24 4
gpt4 key购买 nike

我正在开发一个 bukkit 插件,并试图将整个 list 保存在一个文件中。所以我使用以下方法将文件保存在字符串中: InventoriesData.set(player.getName(), ItemStack + "");

但现在它被保存为字符串,我不知道如何将它转换回 ItemStack。我知道我也可以单独保存所有数据,但我想保存所有信息并认为应该可以转换回来。那么有人知道如何做到这一点吗?

它会返回这个顺便说一句: ItemStack{BLAZE_ROD x 1,UNSPECIFIC_META:{meta-type=UNSPECIFIC,display-name=库存选择器,当前:2,enchants={THORNS=3}}}

最佳答案

要制裁剪品堆,您需要有 Material 和数量:

String s = /* your material string */;
Material m = Material.matchMaterial(s);
ItemStack stack = new ItemStack(m, 1);

但是请注意 ItemStackConfigurationSerializable ,这意味着您可以直接将其保存到配置中:

ItemStack is = /*...*/;
getConfig().set("example", is);
is = (ItemStack) getConfig().get("example");

库存是上下文相关的,因此它们是不可序列化的。如果您愿意,您可以创建一个辅助类来跟踪装甲,并将非空气( null )堆叠为一个类,然后将该类本身创建为 ConfigurationSerializable :

@SerializableAs("Inventory")
public class SInventory implements ConfigurationSerializable {

private final List<ItemStack> items = new ArrayList<>();
private ItemStack head;
private ItemStack chest;
private ItemStack legs;
private ItemStack boots;

/* Other fields */

public SInventory(Map<String, Object> config) {
List<ItemStack> items = (List<ItemStack>) config.get("inventory");
for (ItemStack item : items) {
if (item != null) {
this.items.add(item);
}
}
this.head = (ItemStack) config.get("head");
this.chest = (ItemStack) config.get("chest");
this.legs = (ItemStack) config.get("legs");
this.boots = (ItemStack) config.get("boots");
}

public static SInventory valueOf(Map<String, Object> config) {
return new SInventory(config);
}

public static SInventory deserialize(Map<String, Object> config) {
return new SInventory(config);
}

@Override
public Map<String, Object> serialize() {
Map<String, Object> back = new HashMap<>();
back.put("inventory", this.items);
back.put("head", this.head);
back.put("chest", this.chest);
back.put("legs", this.legs);
back.put("boots", this.boots);
return back;
}

Map<String, Object>是代表此库存的部分。因此,如果您保存 List<ItemStack>当您通过serialize传递它时,在字符串“Inventory”下,然后您可以像这样从 map 中检索它:

List<ItemStack> inv = (List<ItemStack>) map.get("Inventory");

这通常会导致系统变得更简单且更易于管理。

关于java - java bukkit 将字符串转换为 ItemStack,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24025302/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com