public static String COM_GetProject(String crsCOMGetProjectUrl){
URL url = null;
OutputStreamWriter out;
BufferedReader in = null;
String result = "";
HttpURLConnection conn = null;
try {
//得到访问地址的URL
url = new URL(crsCOMGetProjectUrl);
//得到网络访问对象java.net.HttpURLConnection
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.addRequestProperty("Content-Type", "application/json");
conn.setRequestProperty("accept", "*/*");
conn.setRequestProperty("connection", "Keep-Alive");
conn.setRequestProperty("user-agent",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
// 发送POST请求必须设置如下两行
conn.setDoOutput(true);
conn.setDoInput(true);
conn.connect();
out = new OutputStreamWriter( conn.getOutputStream(),"UTF-8");// utf-8编码
out.write("{}");
out.flush();
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream(), "utf-8"));
StringBuffer buffer = new StringBuffer();
String line = "";
while ((line = reader.readLine()) != null) {
buffer.append(line);
}
reader.close();
//buffer为处理结果
String deeresult = buffer.toString();
return deeresult;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (conn != null) {
// 断开连接
conn.disconnect();
}
}
return "";
}
|