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


Java BukkitObjectOutputStream类代码示例

本文整理汇总了Java中org.bukkit.util.io.BukkitObjectOutputStream的典型用法代码示例。如果您正苦于以下问题:Java BukkitObjectOutputStream类的具体用法?Java BukkitObjectOutputStream怎么用?Java BukkitObjectOutputStream使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: itemStackArrayToBase64

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
/**
 * 
 * A method to serialize an {@link ItemStack} array to Base64 String.
 * 
 * <p />
 * 
 * Based off of {@link #toBase64(Inventory)}.
 * 
 * @param items to turn into a Base64 String.
 * @return Base64 string of the items.
 * @throws IllegalStateException
 */
public static String itemStackArrayToBase64(ItemStack[] items) throws IllegalStateException {
	try {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);
        
        // Write the size of the inventory
        dataOutput.writeInt(items.length);
        
        // Save every element in the list
        for (int i = 0; i < items.length; i++) {
            dataOutput.writeObject(items[i]);
        }
        
        // Serialize that array
        dataOutput.close();
        return Base64Coder.encodeLines(outputStream.toByteArray());
    } catch (Exception e) {
        throw new IllegalStateException("Unable to save item stacks.", e);
    }
}
 
开发者ID:untocodes,项目名称:Vaults,代码行数:33,代码来源:Invtobase.java

示例2: toBase64

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
/**
 * A method to serialize an inventory to Base64 string.
 * 
 * <p />
 * 
 * Special thanks to Comphenix in the Bukkit forums or also known
 * as aadnk on GitHub.
 * 
 * <a href="https://gist.github.com/aadnk/8138186">Original Source</a>
 * 
 * @param inventory to serialize
 * @return Base64 string of the provided inventory
 * @throws IllegalStateException
 */
public static String toBase64(Inventory inventory) throws IllegalStateException {
    try {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);
        
        dataOutput.writeInt(inventory.getSize());
        
        for (int i = 0; i < inventory.getSize(); i++) {
            dataOutput.writeObject(inventory.getItem(i));
        }
        
        dataOutput.close();
        return Base64Coder.encodeLines(outputStream.toByteArray());
    } catch (Exception e) {
        throw new IllegalStateException("Unable to save item stacks.", e);
    }
}
 
开发者ID:untocodes,项目名称:Vaults,代码行数:32,代码来源:Invtobase.java

示例3: itemStackArrayToBase64

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
/**
 * 
 * @param items
 * @return A base64 encoded String
 * @throws IllegalStateException
 * 
 * It encodes an {@link ItemStack} array to a base64 String 
 */
public static String itemStackArrayToBase64(ItemStack[] items) throws IllegalStateException
{
   	try {
           ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
           BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);
           
           dataOutput.writeInt(items.length);
           
           for (int i = 0; i < items.length; i++) {
               dataOutput.writeObject(items[i]);
           }
           
           dataOutput.close();
           return Base64Coder.encodeLines(outputStream.toByteArray());
       } catch (Exception e) {
           throw new IllegalStateException("Unable to save item stacks.", e);
       }
 }
 
开发者ID:benfah,项目名称:Bags,代码行数:27,代码来源:InventorySerializer.java

示例4: itemStackArrayToBase64

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
public static String itemStackArrayToBase64(ItemStack[] items) throws IllegalStateException {
	try {
		ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
		BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);

		// Write the size of the inventory
		dataOutput.writeInt(items.length);

		// Save every element in the list
		for (int i = 0; i < items.length; i++) {
			dataOutput.writeObject(items[i]);
		}

		// Serialize that array
		dataOutput.close();
		return Base64Coder.encodeLines(outputStream.toByteArray());
	} catch (Exception e) {
		throw new IllegalStateException("Unable to save item stacks.", e);
	}
}
 
开发者ID:bobmandude9889,项目名称:iZenith-PVP,代码行数:21,代码来源:Util.java

示例5: serialize

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
/**
 * Serializes a ItemStack array to a byte array.
 *
 * @param itemStacks The ItemStacks that should be serialized.
 * @return Serialized ItemsStacks as byte array. null if serialization failed.
 */
@Override
public byte[] serialize(ItemStack[] itemStacks)
{
	byte[] ba = null;
	if(itemStacks != null)
	{
		try(ByteArrayOutputStream b = new ByteArrayOutputStream(); BukkitObjectOutputStream output = new BukkitObjectOutputStream(b))
		{
			output.writeObject(itemStacks);
			output.flush();
			ba = b.toByteArray();
		}
		catch(Exception e)
		{
			e.printStackTrace();
		}
	}
	return ba;
}
 
开发者ID:GeorgH93,项目名称:Bukkit_Bungee_PluginLib,代码行数:26,代码来源:BukkitItemStackSerializer.java

示例6: toBase64

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
public static String toBase64(Inventory inventory) throws IllegalStateException {
	try {
		ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
		BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);

		// Write the size of the inventory
		dataOutput.writeInt(inventory.getSize());

		// Save every element in the list
		for (int i = 0; i < inventory.getSize(); i++) {
			dataOutput.writeObject(inventory.getItem(i));
		}

		// Serialize that array
		dataOutput.close();
		return Base64Coder.encodeLines(outputStream.toByteArray());
	} catch (Exception e) {
		throw new IllegalStateException("Unable to save item stacks.", e);
	}
}
 
开发者ID:michaelkrauty,项目名称:Kettle,代码行数:21,代码来源:Util.java

示例7: serializeItemStack

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
public static String serializeItemStack(ItemStack inv) {
    try {
        ByteArrayOutputStream os = new ByteArrayOutputStream();
        BukkitObjectOutputStream bos = new BukkitObjectOutputStream(os);
        bos.writeObject(inv);

        String hex = BukkitObjectUtil.byteArrayToHexString(os.toByteArray());

        bos.close();
        os.close();
        return hex;
    } catch (IOException ex) {
        ex.printStackTrace();
    }
    return null;
}
 
开发者ID:DemigodsRPG,项目名称:Stoa,代码行数:17,代码来源:ItemUtil.java

示例8: serializeItemStacks

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
public static String serializeItemStacks(ItemStack[] inv) {
    try {
        ByteArrayOutputStream os = new ByteArrayOutputStream();
        BukkitObjectOutputStream bos = new BukkitObjectOutputStream(os);
        bos.writeObject(inv);

        String hex = BukkitObjectUtil.byteArrayToHexString(os.toByteArray());

        bos.close();
        os.close();
        return hex;
    } catch (IOException ex) {
        ex.printStackTrace();
    }
    return null;
}
 
开发者ID:DemigodsRPG,项目名称:Stoa,代码行数:17,代码来源:ItemUtil.java

示例9: serializePotionEffects

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
public static String serializePotionEffects(Collection<PotionEffect> effects) {
    PotionEffect[] eff = new PotionEffect[effects.size()];
    int count = 0;
    for (PotionEffect effect : effects) {
        eff[count] = effect;
        count++;
    }

    try {
        ByteArrayOutputStream os = new ByteArrayOutputStream();
        BukkitObjectOutputStream bos = new BukkitObjectOutputStream(os);
        bos.writeObject(eff);

        String hex = BukkitObjectUtil.byteArrayToHexString(os.toByteArray());

        bos.close();
        os.close();
        return hex;
    } catch (IOException ex) {
        ex.printStackTrace();
    }
    return null;
}
 
开发者ID:DemigodsRPG,项目名称:Stoa,代码行数:24,代码来源:PotionEffectUtil.java

示例10: toBase64

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
public static String toBase64(Inventory inventory) {
    try {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);
        
        // Write the size of the inventory
        dataOutput.writeInt(inventory.getSize());
        
        // Save every element in the list
        for (int i = 0; i < inventory.getSize(); i++) {
            dataOutput.writeObject(inventory.getItem(i));
        }
        
        // Serialize that array
        dataOutput.close();
        return Base64Coder.encodeLines(outputStream.toByteArray());
    } catch (Exception e) {
        throw new IllegalStateException("Unable to save item stacks.", e);
    }        
}
 
开发者ID:SecondFlight,项目名称:pvpmain,代码行数:21,代码来源:BukkitSerialization.java

示例11: save

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
public void save(NBTCompoundTag rootTag) throws IOException
{
	rootTag.setTag("X", new NBTShortTag((short)(location.getBlockX() - location.getChunk().getX() * 16)));
	rootTag.setTag("Y", new NBTShortTag((short)location.getBlockY()));
	rootTag.setTag("Z", new NBTShortTag((short)(location.getBlockZ() - location.getChunk().getZ() * 16)));
	
	ByteArrayOutputStream baos = new ByteArrayOutputStream();
	BukkitObjectOutputStream boos = new BukkitObjectOutputStream(baos);
	boos.writeObject( items );
	
	rootTag.setTag("BukkitItemStackArray", new NBTByteArrayTag(baos.toByteArray()));
	boos.close();
	
	rootTag.setTag("InventoryType", new NBTStringTag(invType.name()));
	
}
 
开发者ID:marsglorious,项目名称:NewNations,代码行数:17,代码来源:NationsContainer.java

示例12: inventoryToString

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
/**
 * Transfer a inventory into a string
 *
 * @param inventory Inventory
 * @return String
 */
@Deprecated
public static String inventoryToString(Inventory inventory) {
	try {
		ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
		BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);

		// Write the size of the inventory
		dataOutput.writeInt(inventory.getSize());

		// Save every element in the list
		for (int i = 0; i < inventory.getSize(); i++) {
			dataOutput.writeObject(inventory.getItem(i));
		}

		// Serialize that array
		dataOutput.close();
		return Base64Coder.encodeLines(outputStream.toByteArray());
	} catch (Exception e) {
		throw new IllegalStateException("Unable to save item stacks.", e);
	}
}
 
开发者ID:CodeMyAss,项目名称:CTBAPI,代码行数:28,代码来源:CTBAPI.java

示例13: toBase64

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
public static String toBase64(Inventory inventory) {
    try {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);

        // Write the size of the inventory
        dataOutput.writeInt(inventory.getSize());

        // Save every element in the list
        for (int i = 0; i < inventory.getSize(); i++) {
            dataOutput.writeObject(inventory.getItem(i));
        }

        // Serialize that array
        dataOutput.close();
        return Base64Coder.encodeLines(outputStream.toByteArray());
    } catch (Exception e) {
        throw new IllegalStateException("Cannot into itemstacksz!", e);
    }
}
 
开发者ID:drtshock,项目名称:PlayerVaults,代码行数:21,代码来源:Base64Serialization.java

示例14: itemStackArrayToBase64

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
/**
 *
 * A method to serialize an {@link ItemStack} array to Base64 String.
 *
 * <p>
 *
 * Based off of {@link #toBase64(Inventory)}.
 *
 * @param items to turn into a Base64 String.
 * @return Base64 string of the items.
 * @throws IllegalStateException if any of the {@link ItemStack}s couldn't be parsed
 */
public static String itemStackArrayToBase64(ItemStack[] items) throws IllegalStateException {
    try {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);

        // Write the size of the inventory
        dataOutput.writeInt(items.length);

        // Save every element in the list
        for (ItemStack item : items) {
            dataOutput.writeObject(item);
        }

        // Serialize that array
        dataOutput.close();
        return Base64Coder.encodeLines(outputStream.toByteArray());
    } catch (Exception e) {
        throw new IllegalStateException("Unable to save item stacks.", e);
    }
}
 
开发者ID:graywolf336,项目名称:Jail,代码行数:33,代码来源:Util.java

示例15: toBase64

import org.bukkit.util.io.BukkitObjectOutputStream; //导入依赖的package包/类
/**
 * A method to serialize an inventory to Base64 string.
 *
 * <p>
 *
 * Special thanks to Comphenix in the Bukkit forums or also known
 * as aadnk on GitHub. <a href="https://gist.github.com/aadnk/8138186">Original Source</a>
 *
 * @param inventory to serialize
 * @return Base64 string of the provided inventory
 * @throws IllegalStateException if any of the {@link ItemStack}s couldn't be parsed
 */
public static String toBase64(Inventory inventory) throws IllegalStateException {
    try {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        BukkitObjectOutputStream dataOutput = new BukkitObjectOutputStream(outputStream);

        // Write the size of the inventory
        dataOutput.writeInt(inventory.getSize());

        // Save every element in the list
        for (int i = 0; i < inventory.getSize(); i++) {
            dataOutput.writeObject(inventory.getItem(i));
        }

        // Serialize that array
        dataOutput.close();
        return Base64Coder.encodeLines(outputStream.toByteArray());
    } catch (Exception e) {
        throw new IllegalStateException("Unable to save item stacks.", e);
    }
}
 
开发者ID:graywolf336,项目名称:Jail,代码行数:33,代码来源:Util.java


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