所以我做了一个小程序,它向网站发送一个 post 方法,然后打印出响应,我可以在网络浏览器中显示响应吗?
HttpResponse response = client.execute(post);
BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
String line = "";
while ((line = rd.readLine()) != null) {
System.out.println(line);
if (line.startsWith("Auth=")) {
String key = line.substring(5);
// Do something with the key
}
}
} catch (IOException e) {
e.printStackTrace();
}
这会在调试器中为我打印整个页面,我可以在浏览器中显示它吗?
我正在使用来自 apache 的 HttpClient。
是否可以以某种方式将响应转换为 URI,然后使用java.awt.Desktop.getDesktop().browse(response);