⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 serialinput.java

📁 嵌入式数据库Berkeley DB-4.5.20源代码
💻 JAVA
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000-2006 *      Oracle Corporation.  All rights reserved. * * $Id: SerialInput.java,v 12.4 2006/08/31 18:14:05 bostic Exp $ */package com.sleepycat.bind.serial;import java.io.IOException;import java.io.InputStream;import java.io.ObjectInputStream;import java.io.ObjectStreamClass;import com.sleepycat.db.DatabaseException;import com.sleepycat.util.RuntimeExceptionWrapper;/** * A specialized <code>ObjectInputStream</code> that gets class description * information from a <code>ClassCatalog</code>.  It is used by * <code>SerialBinding</code>. * * <p>This class is used instead of an {@link ObjectInputStream}, which it * extends, to read an object stream written by the {@link SerialOutput} class. * For reading objects from a database normally one of the serial binding * classes is used.  {@link SerialInput} is used when an {@link * ObjectInputStream} is needed along with compact storage.  A {@link * ClassCatalog} must be supplied, however, to stored shared class * descriptions.</p> * * @author Mark Hayes */public class SerialInput extends ObjectInputStream {    private ClassCatalog classCatalog;    private ClassLoader classLoader;    /**     * Creates a serial input stream.     *     * @param in is the input stream from which compact serialized objects will     * be read.     *     * @param classCatalog is the catalog containing the class descriptions     * for the serialized objects.     */    public SerialInput(InputStream in, ClassCatalog classCatalog)        throws IOException {        this(in, classCatalog, null);    }    /**     * Creates a serial input stream.     *     * @param in is the input stream from which compact serialized objects will     * be read.     *     * @param classCatalog is the catalog containing the class descriptions     * for the serialized objects.     *     * @param classLoader is the class loader to use, or null if a default     * class loader should be used.     */    public SerialInput(InputStream in,                       ClassCatalog classCatalog,                       ClassLoader classLoader)        throws IOException {        super(in);        this.classCatalog = classCatalog;        this.classLoader = classLoader;    }    // javadoc is specified elsewhere    protected ObjectStreamClass readClassDescriptor()        throws IOException, ClassNotFoundException {        try {            byte len = readByte();            byte[] id = new byte[len];            readFully(id);            return classCatalog.getClassFormat(id);        } catch (DatabaseException e) {            /*             * Do not throw IOException from here since ObjectOutputStream             * will write the exception to the stream, which causes another             * call here, etc.             */            throw new RuntimeExceptionWrapper(e);        }    }    // javadoc is specified elsewhere    protected Class resolveClass(ObjectStreamClass desc)        throws IOException, ClassNotFoundException {        if (classLoader != null) {            try {                return Class.forName(desc.getName(), false, classLoader);            } catch (ClassNotFoundException e) {                return super.resolveClass(desc);            }        } else {            return super.resolveClass(desc);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -