android使用始终发送请求insted得到

时间:2017-09-02 13:13:54

标签: java android http request

我正在处理一个项目,我遇到了send get request的问题 我用

HttpURLConnection connection = (HttpURLConnection) myUrl.openConnection();

connection.setRequestMethod("GET");
connection.setDoOutput(false);
connection.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
connection.setRequestProperty("x-access-token" , token);
connection.connect();

Android中的URL连接以及我想要发送获取请求的任何时间 它只是发送邮件请求是什么解决方案?

1 个答案:

答案 0 :(得分:0)

我改为使用Apache library来解决它。