当前位置: 首页>>代码示例>>Java>>正文


Java InventoryUtils.savePersistant方法代码示例

本文整理汇总了Java中codechicken.lib.inventory.InventoryUtils.savePersistant方法的典型用法代码示例。如果您正苦于以下问题:Java InventoryUtils.savePersistant方法的具体用法?Java InventoryUtils.savePersistant怎么用?Java InventoryUtils.savePersistant使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在codechicken.lib.inventory.InventoryUtils的用法示例。


在下文中一共展示了InventoryUtils.savePersistant方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: saveBannedItems

import codechicken.lib.inventory.InventoryUtils; //导入方法依赖的package包/类
public static void saveBannedItems() {
    File file = new File(saveDir, "banneditems.cfg");
    try {
        if(!file.exists())
            file.createNewFile();

        PrintWriter p = new PrintWriter(file);
        p.println("#Saved in this format for external editing. The format isn't that hard to figure out. If you think you're up to it, modify it here!");

        for (ItemStackMap.Entry<Set<String>> entry : bannedItems.entries()) {
            NBTTagCompound key = InventoryUtils.savePersistant(entry.key, new NBTTagCompound());
            key.removeTag("Count");
            if(key.getByte("Damage") == 0) key.removeTag("Damage");

            p.print(key.toString());
            p.print("=[");
            int i = 0;
            for (String s : entry.value) {
                if(i++ != 0) p.print(", ");
                p.print(s);
            }
            p.println("]");
        }
        p.close();
    } catch (Exception e) {
        throw new RuntimeException(e);
    }
}
 
开发者ID:4Space,项目名称:4Space-5,代码行数:29,代码来源:NEIServerConfig.java

示例2: saveBannedItems

import codechicken.lib.inventory.InventoryUtils; //导入方法依赖的package包/类
public static void saveBannedItems() {
    File file = new File(saveDir, "banneditems.cfg");
    try {
        if (!file.exists()) {
            file.createNewFile();
        }

        PrintWriter p = new PrintWriter(file);
        p.println("#Saved in this format for external editing. The format isn't that hard to figure out. If you think you're up to it, modify it here!");

        for (ItemStackMap.Entry<Set<String>> entry : bannedItems.entries()) {
            NBTTagCompound key = InventoryUtils.savePersistant(entry.key, new NBTTagCompound());
            key.removeTag("Count");
            if (key.getByte("Damage") == 0) {
                key.removeTag("Damage");
            }

            p.print(key.toString());
            p.print("=[");
            int i = 0;
            for (String s : entry.value) {
                if (i++ != 0) {
                    p.print(", ");
                }
                p.print(s);
            }
            p.println("]");
        }
        p.close();
    } catch (Exception e) {
        throw new RuntimeException(e);
    }
}
 
开发者ID:TheCBProject,项目名称:NotEnoughItems,代码行数:34,代码来源:NEIServerConfig.java


注:本文中的codechicken.lib.inventory.InventoryUtils.savePersistant方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。