这是报错日志
Caused by: java.io.FileNotFoundException: D:\hdm\lh\hbiparent\core\target\core\META-INF\context.xml (系统找不到指定的文件。)
at java.io.FileInputStream.open0(Native Method)
at java.io.FileInputStream.open(FileInputStream.java:195)
at java.io.FileInputStream.(FileInputStream.java:138)
at org.jetbrains.idea.tomcat.TomcatUtil.loadXMLFile(TomcatUtil.java:205)
... 28 moreeManager.jar
2017-08-07 11:07:16,381 [2438700] INFO - ij.compiler.impl.CompileDriver - COMPILATION STARTED (BUILD PROCESS)
2017-08-07 11:07:16,389 [2438708] INFO - j.compiler.server.BuildManager - Using preloaded build process to compile D:\hdm\lh\hbiparent
2017-08-07 11:07:16,764 [2439083] INFO - .server.BuildMessageDispatcher - 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
这是代码
public Map getSessionId(String userid )
{
String token = null;
String sessionId = null;
http = new DefaultHttpClient();
try {
String url = LOGINURL + "&username=" + userid;
HttpPost post = new HttpPost(url);
// post.setHeader("HYPLOGIN", userid);
HttpResponse response = http.execute(post);
BufferedReader br = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
StringBuffer result = new StringBuffer();
String line;
while ((line = br.readLine()) != null) {
result.append(line);
}
String string = result.toString();
// System.out.println(string);
string = string.substring(0, 2500);
// System.out.println(string);
String regex = "sToken.*=.*\"(.+?)\";.*sCSRFToken";
Pattern p = Pattern.compile(regex);
Matcher matcher = p.matcher(string);
while (matcher.find()) {
token = matcher.group(1);
}
post.abort();
// String mtoken = token.replace("\\n", "\\\n") + "=";
// System.out.println(mtoken);
HttpPost posthttp = new HttpPost(HTTPURL);
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
nvps.add(new BasicNameValuePair("Application", "FYCWYS"));
nvps.add(new BasicNameValuePair("isContained", "true"));
nvps.add(new BasicNameValuePair("isWorkspace", "true"));
nvps.add(new BasicNameValuePair("LOCALE_LANGUAGE", "zh_CN"));
nvps.add(new BasicNameValuePair("moduleid", "HyperionPlanning.planning.7"));
nvps.add(new BasicNameValuePair("themeSelection", "BpmTadpole"));
nvps.add(new BasicNameValuePair("upk_available", "false"));
String mtoken = token.replace("\\n", "\\\n") + "=";
nvps.add(new BasicNameValuePair("sso_token", mtoken));
posthttp.setEntity(new UrlEncodedFormEntity(nvps, HTTP.UTF_8));
HttpResponse responseSession = http.execute(posthttp);
posthttp.abort();
Header[] headers = responseSession.getHeaders("Set-Cookie");
for (Header header : headers) {
if (header.toString().contains("SESSIONID")) {
String str = header.toString();
// String reg = "Cookie:(.+?);.*path";
String reg = "JSESSIONID=(.+?);.*path";
Pattern pattern = Pattern.compile(reg);
Matcher m = pattern.matcher(str);
while (m.find()) {
sessionId = m.group(1).trim();
}
}
}
System.out.println(sessionId);
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (UnsupportedOperationException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
System.out.println(sessionId);
Map<String, String> map = new HashMap<>();
map.put("sessionId",sessionId);
return map;