在内存中创建 mdb 副本时出错

Error in creating a copy of mdb in memory

我正在使用下面的代码在内存中创建 mdb 文件的副本,但它在 DatabaseBuilder 构造函数上给出了空指针异常,表明不存在文件,我想要的是创建一个副本来操作它 return 复制到输出流。

File tmp = new File("test.mdb");

FileChannel channel = MemFileChannel.newChannel(tmp,DatabaseImpl.RW_CHANNEL_MODE);

FileUtils.copyFile(file , tmp);

Database db = new DatabaseBuilder(tmp).setChannel(channel).open();

所以您有一个预制的 Access 数据库文件作为项目中的资源。您可以使用 Jackcess 打开该数据库的内存中副本,方法是首先使用 Class#getResourceAsStream 打开资源 ...

final String dbResourcePath = "/embedded.accdb";
@SuppressWarnings("rawtypes")
Class thisClass = JackcessTestMain.class;  // my "main" class
InputStream dbResourceStream = null;
// for running from executable jar 
dbResourceStream = thisClass.getResourceAsStream("/resources" + dbResourcePath);
if (dbResourceStream == null) {
    // for running inside the Eclipse IDE
    dbResourceStream = thisClass.getResourceAsStream(dbResourcePath);
}

... 将 InputStream 传递给 Jackcess MemFileChannel ...

MemFileChannel mfc = MemFileChannel.newChannel(dbResourceStream);

...然后使用DatabaseBuilder从频道打开Database

Database db = new DatabaseBuilder().setChannel(mfc).open()

完成对数据库内存副本的更改后,您可以将通道的内容发送到 OutputStream。例如,

db.close();
FileOutputStream fos = new FileOutputStream("C:/Users/Public/zzz.accdb");
mfc.transferTo(fos);
fos.close();