Skip to content

tomken/JniHttp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

JniHttp

简单的 HTTP 封装,支持GET、POST请求,支持表单POST

示例:

vector<HttpPostChunk*> fields;
fields.push_back(new HttpPostInputChunk("server", "jeeble"));
fields.push_back(new HttpPostInputChunk("leader", "xxxx"));
fields.push_back(new HttpPostFileChunk("data", "test.txt"));

HttpClient* http = new HttpClient();
http->post("http://test.com/upload.php", fields);

About

简单的 HTTP 封装,支持GET、POST请求,支持表单POST

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors