我正在制作一个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 [])不适用于参数(String,String) http://tinypic.com/r/n6yond/8
答案 0 :(得分:1)
尝试使用:
Arrays.asList(new String[]{"First Line", "Second Line"}));