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++ 中运行在 android 和 ios 上的应用程序。我需要与服务器进行很多通信。如何将帖子发送到服务器?有没有像 Java 中的 HttpPost 这样的类?我对 C++ 很陌生。
您可以使用libcURL与 HTTP(s) 服务器进行通信。
编辑
我还将推荐JsonCpp用于 json 处理,我发现它对于简单的任务来说既简单又有用。