this.headersMap = new TreeMap<String, String>();
this.urlParaMap = new LinkedHashMap<String, String>();
this.formParaMap = new LinkedHashMap<String, String>();
if (IftConf.ProxyEnable.equals("Y")) {
log.info("已设置使用代理:"+IftConf.ProxyIp+":"+IftConf.PROXY_PORT);
httpUtil = new HttpUtil(IftConf.ProxyIp,IftConf.PROXY_PORT);
} else {
log.info("未设置代理");
httpUtil = new HttpUtil();
}
}