當前位置: 首頁>>代碼示例>>Java>>正文


Java CompressedStreamTools.safeWrite方法代碼示例

本文整理匯總了Java中net.minecraft.nbt.CompressedStreamTools.safeWrite方法的典型用法代碼示例。如果您正苦於以下問題:Java CompressedStreamTools.safeWrite方法的具體用法?Java CompressedStreamTools.safeWrite怎麽用?Java CompressedStreamTools.safeWrite使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.minecraft.nbt.CompressedStreamTools的用法示例。


在下文中一共展示了CompressedStreamTools.safeWrite方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: saveServerList

import net.minecraft.nbt.CompressedStreamTools; //導入方法依賴的package包/類
@Override
public void saveServerList()
{
    prepare();
    super.saveServerList();
    int numOfServers = countServers();
    byte[] serverBytes = new byte[numOfServers];

    for (int i = 0; i < numOfServers; i++)
    {
        boolean editStatus = i < servers.size() && servers.get(i);
        serverBytes[i] = editStatus ? (byte) 1 : (byte) 0;
    }

    try
    {
        NBTTagCompound nbttagcompound = new NBTTagCompound();
        nbttagcompound.setByteArray("servers", serverBytes);
        CompressedStreamTools.safeWrite(nbttagcompound, new File(this.mc.mcDataDir, "mtservers.dat"));
    }
    catch (Exception exception)
    {
        //logger.error("Couldn\'t save server list", exception);
    }
}
 
開發者ID:CreeperHost,項目名稱:CreeperHostGui,代碼行數:26,代碼來源:ServerListNoEdit.java

示例2: saveServerList

import net.minecraft.nbt.CompressedStreamTools; //導入方法依賴的package包/類
/**
 * Runs getNBTCompound on each ServerData instance, puts everything into a "servers" NBT list and writes it to
 * servers.dat.
 */
public void saveServerList()
{
    try
    {
        NBTTagList nbttaglist = new NBTTagList();

        for (ServerData serverdata : this.servers)
        {
            nbttaglist.appendTag(serverdata.getNBTCompound());
        }

        NBTTagCompound nbttagcompound = new NBTTagCompound();
        nbttagcompound.setTag("servers", nbttaglist);
        CompressedStreamTools.safeWrite(nbttagcompound, new File(this.mc.mcDataDir, "servers.dat"));
    }
    catch (Exception exception)
    {
        logger.error((String)"Couldn\'t save server list", (Throwable)exception);
    }
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:25,代碼來源:ServerList.java

示例3: saveServerList

import net.minecraft.nbt.CompressedStreamTools; //導入方法依賴的package包/類
/**
 * Runs getNBTCompound on each ServerData instance, puts everything into a "servers" NBT list and writes it to
 * servers.dat.
 */
public void saveServerList()
{
    try
    {
        NBTTagList nbttaglist = new NBTTagList();

        for (ServerData serverdata : this.servers)
        {
            nbttaglist.appendTag(serverdata.getNBTCompound());
        }

        NBTTagCompound nbttagcompound = new NBTTagCompound();
        nbttagcompound.setTag("servers", nbttaglist);
        CompressedStreamTools.safeWrite(nbttagcompound, new File(this.mc.mcDataDir, "servers.dat"));
    }
    catch (Exception exception)
    {
        LOGGER.error((String)"Couldn\'t save server list", (Throwable)exception);
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:25,代碼來源:ServerList.java


注:本文中的net.minecraft.nbt.CompressedStreamTools.safeWrite方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。