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.
我想使用xmlzipio来读取压缩的 xml 文件,但问题是我必须从内存中读取它们并且不想将它们刷新到文件系统只是为了启用 i/o 功能。xmlio.h 是否影响 xmlReadMemory 行为?
如果您在 POSIX(如 Linux 或 Mac OSX)系统上,您可以使用 eg shm_openwithmmap来创建内存映射虚拟文件。如果需要FILE指针,则将返回的描述符传递shm_open给fdopen.
shm_open
mmap
FILE
fdopen