public static  String sendConn(String request_url, int port) {

StringBuffer buffer = new StringBuffer("");
BufferedReader in_search = null;
String inputLine = null;

DataOutputStream outbound = null;
Socket socket = null;
try {
//����socket��ַ
InetSocketAddress addr = new InetSocketAddress(Const.domain, port);
//�½�һ��socket����
socket = new Socket();
//���ó�ʱʱ��
socket.setSoTimeout(Const.timeout);
//socketl������
socket.connect(addr, Const.timeout);

//������һ����������
outbound = new DataOutputStream(socket.getOutputStream());
//����һ���buffered����
in_search = new BufferedReader(new InputStreamReader(socket.getInputStream(), "UTF-8"));
System.out.println("request_url ==== " + request_url);
outbound.writeBytes(request_url + "\r\n");
outbound.writeBytes("\r\n");
outbound.flush();
inputLine=null;
while ((inputLine = in_search.readLine()) != null) {
buffer.append(inputLine);
buffer.append("\n");
}
} catch (IOException e) {
logger.error("IOException:", e);
} catch (Exception e) {
logger.error("Exception:", e);
} finally {
try {
if (outbound != null)
outbound.close();
if (in_search != null)
in_search.close();
if (socket != null)
socket.close();
} catch (IOException e) {
logger.error("IOException:", e);
} catch (Exception e) {
logger.error("Exception:", e);
}
}
return buffer.toString();
}为什么无法取得数据的结果url = GET /ISearchBack/ResultServY?itype=1&key=女孩 const.domain = 60.28.215.20  port =18075  求助.....