3

我正在制作我的第一个 bukkit 插件。我想以编程方式创建一个表示HashMap. 如何设置和获取此数据结构?

HashMap参数看起来像<Signature, Location>Signature我的类在哪里存储 4 个整数,并且Locationorg.bukkit.Location

我想我希望 YAML 文件看起来像这样,但我不确定这种结构是否最好:

MyPlugin:
    ListOfData:
        - signature: [1,2,3,4]    # this is a unique set of 4 integers
          location: [122,64,254]  # non-unique set of 3 integers
        - signature: [4,2,1,2]
          location: [91,62,101]
        - signature: [3,3,1,3]
          location: [190,64,321]

Signature可以根据需要进行修改,Location如果需要,我可以创建一个包装器。

谢谢!

4

1 回答 1

2

这是一个建议的解决方案。我不知道这是否是最好的方法... :) 您可能想将此视为您的 yaml 结构:

MyPlugin:
    ListOfData:
        '[1,2,3,4]': '[122,64,254]'
        '[4,2,1,2]': '[91,62,101]'
        '[3,3,1,3]': '[190,64,321]'
        anothersignature:anotherlocation
        ...

这将让您在使用从 YAMLConfiguration 读取哈希映射的普通技术中读取“ListOfData”(见下文)。

您必须将来自文件的传入信息视为 <String, String> 的 HashMap 并从那里进行所需的任何转换(例如,将 122,64,254 转换为位置)。

读取 HashMap:

this.getConfig().getConfigurationSection("path.to.map").getValues(false)

写一个 HashMap(saveConfig() 仍然需要被调用来写入磁盘):

this.getConfig().createSection("path.to.map", MyMap)

这里有一些细节和微妙之处,值得仔细阅读(同一页,但不同的非连续部分):

http://wiki.bukkit.org/Configuration_API_Reference#HashMaps http://wiki.bukkit.org/Configuration_API_Reference#HashMaps_2

于 2013-07-22T17:50:29.313 回答