Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在测试将对象存储在 hsqldb 数据库中的各种序列化策略。通常,我会使用基于文件的数据库,但在我的测试中,使用内存数据库对我来说很方便。
有没有办法获得这样一个数据库的大小?
您可以尝试在填充数据库之前和之后检查 JVM 内存分配。
Runtime.getRuntime().totalMemory(); Runtime.getRuntime().freeMemory();
总减去可用内存是当前内存使用量。