我正在尝试通过将图像转换为服务器的字符串缓冲区来上传图像。但是在连接时,我总是得到提到的错误异常。
isConnected失败:EHOSTUNREACH(无路由到主机)
以上是我得到的例外情况
这是我用来上传图片的代码
jsonSendData = new JSONObject();
jsonSendData.put("data", sendData);
URL url = new URL(getFieldTCTEnableStr("URL"));
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
//method
conn.setRequestMethod("POST");
//header
conn.setRequestProperty("Content-Type", "application/json");
OutputStreamWriter out = new OutputStreamWriter(conn.getOutputStream());
out.write(jsonSendData.toString());
out.flush();
out.close();
conn.disconnect();