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.
如果文档说 DataStore 接口存储不可变的数据,是否可以在 Jackrabbit JCR 实现中存储随机访问的文件(写入和读取)。
在 JCR API 中,不支持二进制文件中的随机访问。唯一的解决方法是使用 InputStream.seek (但您只能向前搜索)。当然,您可以创建一个临时表并在其上使用 RandomAccessFile(或者对于小型二进制文件在内存中编辑它们),但您可能已经知道这一点。