gpt4 book ai didi

java - Craftbukkit 玩家计数消息插件编码错误

转载 作者:行者123 更新时间:2023-12-01 13:10:37 24 4
gpt4 key购买 nike

我正在制作一个 Craftbukkit 插件,它在玩家计数列表中包含一条消息,例如 HIVEmc 或 Omega Realm。我正在 Ecplise 中编码并使用 ProtocolLib v3.2.0 和 Craftbukkit 1.7.2 R0.3。我是java新手,不太了解。到目前为止...这是我的代码和错误

    public void onEnable() {
saveConfig();
if(!new File(getDataFolder(),"RESET.FILE").exists()){
try {
getConfig().set("Message",
Arrays.asList("First Line","Second Line"));
new File(getDataFolder(),"RESET.FILE").createNewFile();
} catch (IOException e) {
e.printStackTrace();
}

}
}

错误:数组类型中的方法 asList(T[]) 不适用于参数(字符串、字符串) http://tinypic.com/r/n6yond/8

最佳答案

尝试使用这个:

Arrays.asList(new String[]{"First Line", "Second Line"}));

关于java - Craftbukkit 玩家计数消息插件编码错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22898260/

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