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.
假设我创建了一个 csv 文件并将其保存在某处。我将如何以编程方式(如果可能,使用 C++ 或我可以从 C++ 调用的东西)打开 Calc 并将该 csv 文件导出到它?
尝试system:
system
system("/path/to/calc /path/to/your/csv");
http://www.cplusplus.com/reference/cstdlib/system/