Bukkit ConfigurationSection getKeys

时间:2014-05-25 21:27:12

标签: java plugins minecraft bukkit

我有一个bukkit配置文件,如下所示:

effected mobs:
  skeleton:
    lower hp limit: 0
    upper hp limit: 0
  zombie:
    lower hp limit: 0
    upper hp limit: 0
  spider:
    lower hp limit: 0
    upper hp limit: 0

我正在尝试获得一个包含[骨架,僵尸,蜘蛛]和其他任何可能通过向其提供关键“受影响的怪物”而添加的集合。我看过这个类似的question 并尝试了以下代码:

public class Main extends JavaPlugin implements Listener{
    public FileConfiguration config;
    public Set<String> mobsEffected;

    public void onEnable(){
        config = getConfig();
        mobsEffected = config.getConfigurationSection("effected mobs").getKeys(false);
        Bukkit.getLogger().info(String.valueOf(mobsEffected.size() ));

    }
}

但是大小记录为0,应该是3.任何建议?

3 个答案:

答案 0 :(得分:3)

因此,您实际上希望根据配置条目获取一组字符串。 这应该有效:

public class Main extends JavaPlugin implements Listener {
    public FileConfiguration config;
    public Set<String> mobsEffected;

    public void onEnable() {
        // you have to initialize your set!
        mobsEffected = new HashSet<String>();
        // this creates the Config
        File Cfgpath = new File("plugins/yourpluginnamehere");
        File Cfg =  new File("plugins/yourpluginnamehere/config.yml");
        try {
            Cfg.createNewFile();
        } catch (IOException e) {
            Cfgpath.mkdirs();
            try {
                Cfg.createNewFile();
            } catch (IOException e1) {
                e1.printStackTrace();
            }
        }

        config = YamlConfiguration.loadConfiguration(Cfg);
        // Now it loops through all the Keys in the Configuration Section
        // "effected mobs" and adds every key to your set!
        for (String key : config.getConfigurationSection("effected mobs").getKeys(false)) {
            mobsEffected.add(key);
        }
        Bukkit.getLogger().info(String.valueOf(mobsEffected.size()));

    }
}

请确保您使用插件的名称替换您的插件名称。 您必须在必须替换它的两个时间使用相同的String(区分大小写!)。

然后它将在第一次运行时为您自动创建一个配置为空的config.yml的配置目录。

首次运行时,您还会获得NullPointerexception,因为ConfigurationSection尚未存在。所以,只需转到插件的文件夹,然后将配置内容插入到新创建的config.yml中。

答案 1 :(得分:0)

getConfig().getConfigurationSection("effected mobs").getKeys(false).toArray();

你应该仔细阅读wiki xD

答案 2 :(得分:0)

您的配置节effected mobs包含一个空格,在配置节名称中不允许使用空格。 就个人而言,我使用连字符(-),其中会使用空格。