- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.bukkit.configuration.file.YamlConfiguration.getKeys()
方法的一些代码示例,展示了YamlConfiguration.getKeys()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YamlConfiguration.getKeys()
方法的具体详情如下:
包路径:org.bukkit.configuration.file.YamlConfiguration
类名称:YamlConfiguration
方法名:getKeys
暂无
代码示例来源:origin: drtshock/PlayerVaults
/**
* Gets the numbers belonging to all their vaults.
*
* @param holder
* @return a set of Integers, which are player's vaults' numbers (fuck grammar).
*/
public Set<Integer> getVaultNumbers(String holder) {
Set<Integer> vaults = new HashSet<>();
YamlConfiguration file = getPlayerVaultFile(holder, true);
if (file == null) {
return vaults;
}
for (String s : file.getKeys(false)) {
try {
// vault%
int number = Integer.valueOf(s.substring(4));
vaults.add(number);
} catch (NumberFormatException e) {
// silent
}
}
return vaults;
}
代码示例来源:origin: Bkm016/TabooLib
public void load(YamlConfiguration configuration, boolean cleanup) {
int originNodes = map.size();
int updateNodes = 0;
if (cleanup) {
map.clear();
}
for (String s : configuration.getKeys(true)) {
boolean updated = false;
Object value = configuration.get(s);
if (value instanceof TLocaleSerialize) {
updated = map.put(s, Collections.singletonList((TLocaleSerialize) value)) != null;
} else if (value instanceof List && !((List) value).isEmpty()) {
if (isListString((List) value)) {
updated = map.put(s, Collections.singletonList(TLocaleText.of(value))) != null;
} else {
updated = map.put(s, ((List<?>) value).stream().map(o -> o instanceof TLocaleSerialize ? (TLocaleSerialize) o : TLocaleText.of(String.valueOf(o))).collect(Collectors.toList())) != null;
}
} else if (!(value instanceof ConfigurationSection)) {
String str = String.valueOf(value);
updated = map.put(s, Collections.singletonList(str.length() == 0 ? TLocaleSerialize.getEmpty() : TLocaleText.of(str))) != null;
}
if (updated) {
updateNodes++;
}
}
latestUpdateNodes.set(originNodes - updateNodes);
}
}
代码示例来源:origin: BentoBoxWorld/BentoBox
/**
* Merges a language YAML file to this locale
* @param toBeMerged the YamlConfiguration of the language file
*/
public void merge(YamlConfiguration toBeMerged) {
for (String key : toBeMerged.getKeys(true)) {
if (!key.startsWith("meta") && !config.contains(key)) {
config.set(key, toBeMerged.get(key));
}
}
updateAuthors(toBeMerged);
}
代码示例来源:origin: garbagemule/MobArena
private static boolean process(YamlConfiguration defaults, ConfigurationSection section, boolean addOnlyIfEmpty, boolean removeObsolete) {
boolean modified = false;
Set<String> present = section.getKeys(true);
Set<String> required = defaults.getKeys(true);
if (!addOnlyIfEmpty || present.isEmpty()) {
for (String req : required) {
if (!present.remove(req)) {
section.set(req, defaults.get(req));
modified = true;
}
}
}
if (removeObsolete) {
for (String obs : present) {
section.set(obs, null);
modified = true;
}
}
return modified;
}
代码示例来源:origin: garbagemule/MobArena
TemplateStore read() {
YamlConfiguration yaml = new YamlConfiguration();
try {
File file = new File(plugin.getDataFolder(), TemplateStore.FILENAME);
if (!file.exists()) {
plugin.getLogger().info(TemplateStore.FILENAME + " not found, creating default...");
plugin.saveResource(TemplateStore.FILENAME, false);
}
yaml.load(file);
} catch (InvalidConfigurationException e) {
throw new IllegalStateException(TemplateStore.FILENAME + " is invalid!", e);
} catch (FileNotFoundException e) {
throw new IllegalStateException(TemplateStore.FILENAME + " is missing!", e);
} catch (IOException e) {
throw new IllegalStateException(e);
}
Map<String, Template> map = new HashMap<>();
for (String key : yaml.getKeys(false)) {
validateTemplateNode(key, yaml);
String templateId = stripStateSuffix(key);
map.computeIfAbsent(templateId, id -> loadTemplate(id, yaml));
}
plugin.getLogger().info("Loaded " + map.size() + " sign templates.");
return new TemplateStore(map);
}
代码示例来源:origin: elBukkit/MagicPlugin
protected void describeParameters(CommandSender sender) {
Collection<String> keys = parameters.getKeys(false);
if (keys.size() == 0) {
sender.sendMessage(ChatColor.GRAY + " (None)");
}
for (String key : keys) {
String value = null;
if (parameters.isConfigurationSection(key)) {
ConfigurationSection child = parameters.getConfigurationSection(key);
value = "(" + child.getKeys(false).size() + " values)";
} else {
value = parameters.getString(key);
}
sender.sendMessage(ChatColor.LIGHT_PURPLE + " " + key + ": " + value);
}
}
代码示例来源:origin: ChestShop-authors/ChestShop-3
public DiscountModule() {
config = YamlConfiguration.loadConfiguration(ChestShop.loadFile("discounts.yml"));
config.options().header("This file is for discount management. You are able to do that:\n" +
"group1: 75\n" +
"That means that the person with ChestShop.discount.group1 permission will pay only 75% of the price. \n" +
"For example, if the price is 100 dollars, the player pays only 75 dollars.\n" +
"(Only works in buy-only Admin Shops!)");
try {
config.save(ChestShop.loadFile("discounts.yml"));
} catch (IOException e) {
e.printStackTrace();
}
groupList = config.getKeys(false);
}
代码示例来源:origin: drtshock/PlayerVaults
/**
* Check if the location given is a sign, and if so, remove it from the signs.yml file
*
* @param location The location to check
*/
public void blockChangeCheck(Location location) {
if (plugin.getSigns().getKeys(false).isEmpty()) {
return; // Save us a check.
}
String world = location.getWorld().getName();
int x = location.getBlockX();
int y = location.getBlockY();
int z = location.getBlockZ();
if (plugin.getSigns().getKeys(false).contains(world + ";;" + x + ";;" + y + ";;" + z)) {
plugin.getSigns().set(world + ";;" + x + ";;" + y + ";;" + z, null);
plugin.saveSigns();
}
}
代码示例来源:origin: elBukkit/MagicPlugin
Collection<String> allKeys = currentConfig.getKeys(true);
for (String key : allKeys) {
Object defaultValue = defaultConfig.get(key);
int originalTopSize = currentConfig.getKeys(false).size();
int cleanTopSize = cleanConfig.getKeys(false).size();
int cleanSize = cleanConfig.getKeys(true).size();
int removedCount = allKeys.size() - cleanSize;
if (removedCount > 0) {
代码示例来源:origin: mcMMO-Dev/mcMMO
String sanitizedEntityName = entityName.replace(".", "_");
if (entitiesFile.getKeys(false).contains(sanitizedEntityName)) {
return;
代码示例来源:origin: SkyWars/SkyWars
for (String key : config.getKeys(false)) {
if (key.equals("configuration-version")) continue;
if (config.isConfigurationSection(key)) {
代码示例来源:origin: bergerkiller/BKCommonLib
for (String key : this.getSource().getKeys(true)) {
Object value = this.getSource().get(key);
if (value instanceof String) {
代码示例来源:origin: libraryaddict/LibsDisguises
int dupes = 0;
for (String key : config.getKeys(false)) {
String value = config.getString(key);
代码示例来源:origin: drtshock/PlayerVaults
} else {
StringBuilder sb = new StringBuilder();
for (String key : file.getKeys(false)) {
sb.append(key.replace("vault", "")).append(" ");
代码示例来源:origin: elBukkit/MagicPlugin
info("Loading image map data from " + configurationFile.getName());
configuration.load(configurationFile);
Set<String> maps = configuration.getKeys(false);
boolean needsUpdate = false;
for (String mapIdString : maps) {
代码示例来源:origin: drtshock/PlayerVaults
int y = l.getBlockY();
int z = l.getBlockZ();
if (plugin.getSigns().getKeys(false).contains(world + ";;" + x + ";;" + y + ";;" + z)) {
int num = PlayerVaults.getInstance().getSigns().getInt(world + ";;" + x + ";;" + y + ";;" + z + ".chest", 1);
if (player.hasPermission("playervaults.signs.use") || player.hasPermission("playervaults.signs.bypass")) {
我在使用 bukkit 可运行程序时遇到了一些问题。我试图让它工作,但它只会向我抛出错误。这就是我想要的 public class FlyE implements Listener { @Even
今天我正在尝试制作一个插件,它可以生成一匹骷髅马,并且马周围有火焰粒子。我把那部分拿下来了,但是每当有人杀死骨马时,火粒子就会留在那里。有人请帮忙吗? 还有我的代码(2类): package surv
在 Maven 中找不到 groudID、artifactId 和 version 依赖项? 我关注了this设置使用 Maven 的 Minecraft 插件的教程。 但我收到错误 org.bukk
我是 bukkit/spigot 的新手,我正在制作一个插件,玩家可以在其中键入命令“/sign”,然后会在玩家旁边创建一个附在木 block 上的标志。该标志将显示“你好 PlayerName”。但
我有一个玩家,当然能够以矢量形式捕获玩家面对的方向。 使用这个向量,我需要计算玩家是否正在查看 x 内的实体。块,如果“咒语”会击中它。我还需要考虑实体前面是否有任何东西。 到目前为止,我的思考过程是
本文整理了Java中org.bukkit.WorldBorder类的一些代码示例,展示了WorldBorder类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等
我正在尝试制作一个插件来消除 Minecraft 中的饥饿感。但是,我找不到它的事件! 是否有玩家失去饥饿感时调用的事件? 类似 PlayerHungerChangeEvent 的东西? 最佳答案 我
我正在尝试在 bukkit 插件内打开一个套接字,以便我可以使用 php 或 Node 向其发送数据,但套接字在使用一次后不会保持打开状态,而是关闭,并且在发生这种情况之前服务器不会加载,我应该做什么
我有这个可能有错误的代码片段: @EventHandler public void onPlayerInteract(PlayerInteractEvent e) { if (e.getAct
已修复 我正在尝试在我的实体名称旁边添加一个健康栏,例如: 3级骷髅|||| 其中的栏表示生命值,满分 5。我似乎已经尝试了一切,但我无法弄清楚!我认为这很简单,但我就是无法理解...... @Eve
我正在制作一个小游戏。如果有2名玩家在线,则开始倒计时。我正在用我的 2 个帐户进行测试。当1个帐户登录时,我会得到一把钻石剑。没关系。但是当我使用第二个帐户登录时,倒计时不会开始,并且出现错误。我不
我正在尝试同时学习 Java 和 Bukkit(几个月前我已经学习了一些基本的 Java 并制作了一个简单的文本游戏)。 我知道当我使用 1 个类时我在做什么,但是,正如你可能知道的那样,一切都变得困
我正在尝试查看玩家的库存中是否有以下任何元素,如果有,我想删除这些元素并向他们发送一条消息,说明该元素已被删除,但我不知道如何为此,这就是我到目前为止所拥有的: Material[] bann
所以我有这个代码: vector 速度=playerA.getVelocity(); playerB.setVelocity(vel); 这为玩家 B 提供了玩家 A 的速度。问题是玩家 B 经常与玩
首先,我是 Java 新手。这是我的第一个 bukkit 插件,唯一的错误是这个( Click Here )。该插件的目标是,当您右键单击“基岩 splinter 机”时,它会破坏基岩。 packag
所以我正在为我的服务器创建一个踢/禁止命令,格式为/踢名称原因。我一切正常,但 原因 只能是 1 个单词,除此之外的任何内容,例如 /kick BattleDash hello world 会说 Ba
我想创建新项目。我称之为生命 Crystal 。我还为这个新项目创建了新配方。我的问题是,当我尝试制作该元素时,我制作了普通元素,没有新的显示名称和结界。我的代码如下所示。 // Life Crys
如果我在选定的世界中选择了一个位置,并且在该位置周围有一个“安全区”,该区域延伸 500 个街区(创建一个圆圈)(这意味着玩家可以在该位置的 500 个街区内并且是“安全的”) ”)。如何找到从玩家位
我目前正在创建一个利用分配器的插件。我在监听器中有一个 while 循环,应该从分配器的库存中删除一 block 煤炭,直到没有剩余的煤炭可以打破循环。它精细循环并记录用于表示煤炭数量的整数的倒计时。
在 for 循环中,我的目标是伤害其他未被伤害的玩家。因此,我创建了一个新事件,其原因是自杀,这样当它对玩家造成伤害时,就不会再次调用此方法,最终杀死玩家。我进行了研究,发现有关调用新实体损坏事件的信
我是一名优秀的程序员,十分优秀!