尽管原始.db文件未启用加密保护,但将.db
的sqlite src/main/resources
文件从target
复制到SQLCipher
仍需要FileUtils.copyFile(new ClassPathResource("file.db").getFile(), new File("target/file.db"));
来打开文件。
’cms_news‘
如何在复制.db文件时禁用要求解密密钥的弹出窗口?
我们需要在原始文件中设置一些PRAGMA吗?
答案 0 :(得分:0)
如下所示替换Spring的ClassPathResource
并不需要在打开文件时弹出窗口:
FileUtils.copyFile(new File("src/main/resources/file.db"), new File("target/file.db"));