我正在处理一个项目,我遇到了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连接以及我想要发送获取请求的任何时间 它只是发送邮件请求是什么解决方案?