String path="http://"+IPAddress.ip+":8080/HiTaxiServer/getLogin.do?id='段郎'&pwd='123'";//这个“段郎 ”在服务器接受的时候 是乱码
URL url;
try {
url = new URL(path);
conn=(HttpURLConnection) url.openConnection();
conn.setConnectTimeout(5000);
if(conn.getResponseCode()==200){
System.out.println("连接成功");
BufferedReader buff = new BufferedReader(new InputStreamReader(
conn.getInputStream()));
stat=buff.readLine();
if(stat.equals("true")){
return true;
}
else {
return false;
}
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}finally{
if(conn!=null){
conn.disconnect();
}
}
String path="http://"+IPAddress.ip+":8080/HiTaxiServer/getLogin.do?id='段郎'&pwd='123'";//这个“段郎 ”在服务器接受的时候 是乱码,怎么解决?我只想用get方式传递,因为方便点
|