我想说的是,在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());
答案 0 :(得分:0)
在不说出特定语言的情况下,您似乎需要先登录该服务才能访问您的信息。