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

📄 testclasscatalog.java

📁 berkeley db 4.6.21的源码。berkeley db是一个简单的数据库管理系统
💻 JAVA
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002,2007 Oracle.  All rights reserved. * * $Id: TestClassCatalog.java,v 12.5 2007/05/04 00:28:27 mark Exp $ */package com.sleepycat.bind.serial.test;import java.io.ObjectStreamClass;import java.util.HashMap;import com.sleepycat.bind.serial.ClassCatalog;import com.sleepycat.db.DatabaseException;/** * @author Mark Hayes */public class TestClassCatalog implements ClassCatalog {    private HashMap idToDescMap = new HashMap();    private HashMap nameToIdMap = new HashMap();    private int nextId = 1;    public TestClassCatalog() {    }    public void close()        throws DatabaseException {    }    public synchronized byte[] getClassID(ObjectStreamClass desc)        throws DatabaseException {        String className = desc.getName();        byte[] id = (byte[]) nameToIdMap.get(className);        if (id == null) {            String strId = String.valueOf(nextId);            id = strId.getBytes();            nextId += 1;            idToDescMap.put(strId, desc);            nameToIdMap.put(className, id);        }        return id;    }    public synchronized ObjectStreamClass getClassFormat(byte[] id)        throws DatabaseException {        String strId = new String(id);        ObjectStreamClass desc = (ObjectStreamClass) idToDescMap.get(strId);        if (desc == null) {            throw new DatabaseException("classID not found");        }        return desc;    }}

⌨️ 快捷键说明

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