Java HttpClient changing content-type?

前端 未结 2 1659
挽巷
挽巷 2020-12-09 14:01

I am building a small app for my Android phone to forward text messages to a webserver using a very basic REST interface.

I am using the android 4.0.3 SDK. I develo

2条回答
  •  -上瘾入骨i
    2020-12-09 14:42

    easy :

    import org.apache.http.client.methods.HttpPost;
    
    httppost.setEntity(new StringEntity(json.toString(), org.apache.http.entity.ContentType.APPLICATION_JSON));
    

提交回复
热议问题