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


Java ClassLoaderObjectInputStream.close方法代码示例

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


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

示例1: deserialize

import org.apache.commons.io.input.ClassLoaderObjectInputStream; //导入方法依赖的package包/类
public static Object deserialize(byte[] serialized, URLClassLoader loader) {
	try {
		ByteArrayInputStream bis = new ByteArrayInputStream(serialized);
		Object ret = null;
		if (loader != null) {
			ClassLoaderObjectInputStream cis = new ClassLoaderObjectInputStream(
					loader, bis);
			ret = cis.readObject();
			cis.close();
		} else {
			ObjectInputStream ois = new ObjectInputStream(bis);
			ret = ois.readObject();
			ois.close();
		}
		return ret;
	} catch (IOException ioe) {
		throw new RuntimeException(ioe);
	} catch (ClassNotFoundException e) {
		throw new RuntimeException(e);
	}
}
 
开发者ID:zhangjunfang,项目名称:jstorm-0.9.6.3-,代码行数:22,代码来源:Utils.java

示例2: javaDeserializeWithCL

import org.apache.commons.io.input.ClassLoaderObjectInputStream; //导入方法依赖的package包/类
/**
 * Deserialized with ClassLoader
 * 
 * @param serialized
 * @param loader
 * @return
 */
public static Object javaDeserializeWithCL(byte[] serialized, URLClassLoader loader) {
    try {
        ByteArrayInputStream bis = new ByteArrayInputStream(serialized);
        Object ret = null;
        if (loader != null) {
            ClassLoaderObjectInputStream cis = new ClassLoaderObjectInputStream(loader, bis);
            ret = cis.readObject();
            cis.close();
        } else {
            ObjectInputStream ois = new ObjectInputStream(bis);
            ret = ois.readObject();
            ois.close();
        }
        return ret;
    } catch (IOException ioe) {
        throw new RuntimeException(ioe);
    } catch (ClassNotFoundException e) {
        throw new RuntimeException(e);
    }
}
 
开发者ID:kkllwww007,项目名称:jstrom,代码行数:28,代码来源:Utils.java

示例3: loadGameHistory

import org.apache.commons.io.input.ClassLoaderObjectInputStream; //导入方法依赖的package包/类
/**
 * Loads a saved game from the device's memory
 * @return saved match if found, else returns null
 */
public static PygmyGame loadGameHistory(String path) {
	File file = new File(path);
	PygmyGame game = null;

	if (file.exists()) {
		try {
			ClassLoaderObjectInputStream ois = new ClassLoaderObjectInputStream(
					PygmyLoader.getClassLoader(), new FileInputStream(file));
			game = (PygmyGame) ois.readObject();
			ois.close();
		} catch (Exception e) { 
			e.printStackTrace();
		}
	}
	return game;
}
 
开发者ID:elyas-bhy,项目名称:pygmy,代码行数:21,代码来源:Utils.java

示例4: javaDeserializeWithCL

import org.apache.commons.io.input.ClassLoaderObjectInputStream; //导入方法依赖的package包/类
/**
 * Deserialized with ClassLoader
 */
public static Object javaDeserializeWithCL(byte[] serialized, URLClassLoader loader) {
    try {
        ByteArrayInputStream bis = new ByteArrayInputStream(serialized);
        Object ret;
        if (loader != null) {
            ClassLoaderObjectInputStream cis = new ClassLoaderObjectInputStream(loader, bis);
            ret = cis.readObject();
            cis.close();
        } else {
            ObjectInputStream ois = new ObjectInputStream(bis);
            ret = ois.readObject();
            ois.close();
        }
        return ret;
    } catch (IOException | ClassNotFoundException ioe) {
        throw new RuntimeException(ioe);
    }
}
 
开发者ID:alibaba,项目名称:jstorm,代码行数:22,代码来源:Utils.java

示例5: restoreWrappedObject

import org.apache.commons.io.input.ClassLoaderObjectInputStream; //导入方法依赖的package包/类
private void restoreWrappedObject() {
	try {
		if(modelObject_ == null) {
			// Then this must be a new request
			installFacesListener();
			
			ByteArrayInputStream bis = new ByteArrayInputStream(serializedModel_);
			FacesContext facesContext = FacesContext.getCurrentInstance();
			ClassLoaderObjectInputStream ois = new ClassLoaderObjectInputStream(facesContext.getContextClassLoader(), bis);
			modelObject_ = (ModelObject)ois.readObject();
			ois.close();
			bis.close();
			serializedModel_ = null;
		}
	} catch(Exception e) {
		e.printStackTrace();
	}
}
 
开发者ID:jesse-gallagher,项目名称:XPages-Scaffolding,代码行数:19,代码来源:ModelDataContainer.java

示例6: deserializeObjectWithInheritance

import org.apache.commons.io.input.ClassLoaderObjectInputStream; //导入方法依赖的package包/类
public UserEntity deserializeObjectWithInheritance(InputStream receivedFile) throws IOException, ClassNotFoundException {
    ClassLoaderObjectInputStream in = new ClassLoaderObjectInputStream(getClass().getClassLoader(), receivedFile);
    try {
        return (UserEntity) in.readObject();
    }
    finally {
        in.close();
    }
}
 
开发者ID:blackarbiter,项目名称:Android_Code_Arbiter,代码行数:10,代码来源:ObjectDeserialization.java


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