首先我想说的是,在 Stackoverflow 的帮助下,我能够从 URL 读取 XML 响应。感谢您的帮助和许多其他帮助。我阅读并打印了响应(下面的代码),但结果不正确。
在浏览器中显示我(正确):
<ENELIT>
<GESI>
<RI>
<NR id="008201dfa306f4a2" tu="N" nr="0412395504" ut="" cp="" dp="" tm="" ca="" da="" rt="" cc="4"/>
</RI>
</GESI>
</ENELIT>
在 Java 中,它会打印这个(不正确):
<html>
<head>
<link rel=stylesheet href="/psiche/styles/IEStyle.css" type="text/css">
</head>
<body>
<SCRIPT FOR=window EVENT=onload LANGUAGE="JAVAScript">
if (top.areaApplication != undefined)
{
alert("Sessione utente scaduta. Effettuare il logon");
top.areaApplication.location = "/gesi/online/root/login.htm";
}
</SCRIPT>
<h2>Sessione scaduta, Effettuare il logon.</h2>
</body>
</html>
我怎样才能得到正确的结果?谢谢!
我获取和打印响应的代码:示例 1:
URL url = new URL("http://gesi-ro-test.banat.enelro:8010/dynamic/gesi/ri/elab/phonerequest/wind.serid=008201dfa306f4a2&nr=06648624&is=2011/04/20%2013:03:03.296&rt=RE/");
BufferedReader in = new BufferedReader(
new InputStreamReader(url.openStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();
示例 2:
URL url = new URL("http://gesi-ro-test.banat.enelro:8010/dynamic/gesi/ri/elab/phonerequest/wind.ser?id=008201dfa306f4a2&nr=06648624&is=2011/04/20%2013:03:03.296&rt=RE");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
InputStream stream = connection.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
StringBuilder sb = new StringBuilder();
String line = null;
while((line = reader.readLine()) != null)
{
sb.append(line).append("\n");
}
stream.close();
System.out.println(sb.toString());