Java 我有一种情况,我必须在表单提交的结果中获取响应的 Web 内容,但这有点棘手,因为流程不像请求和响应那么简单,如下所示。
Submit button pressed -> Display page processing wait timer -> Display quick advertisement page -> Display page result.
从“按下提交按钮”开始,我想要“显示页面结果”内容并在两者之间跳过页面。
我有这个示例代码,但它只能以一种方式工作,发送请求和接收响应。
URL url;
InputStream is = null;
DataInputStream dis;
String line;
try {
url = new URL("http://stackoverflow.com/");
is = url.openStream(); // throws an IOException
dis = new DataInputStream(new BufferedInputStream(is));
while ((line = dis.readLine()) != null) {
System.out.println(line);
}
} catch (MalformedURLException mue) {
mue.printStackTrace();
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
try {
is.close();
} catch (IOException ioe) {
// nothing to see here
}
}
任何java库都可以为我做吗?提前致谢。