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.
我有一个 C++ 程序,它从套接字读取数据并将其加载到 xml 文件中。我在同一个程序中有另一个函数,它在加载数据后调用,它解析 xml 文件。这里的问题是数据实际上只有在程序关闭后才会出现在文件中。因此 xml 解析器无法读取数据。有没有办法在读取数据后立即加载文件?
您必须在写入文件之后和读取之前关闭文件句柄。 或者,您可以以读/写模式打开文件。