我想在textfield中键入一些文本,然后选择a,如果a不可用,则选择b,最后提交信息。 我只是编写这些代码,不知道接下来我该怎么做。
URL page_1 = new URL("https://google.com.hk");
HttpURLConnection urlconnection = (HttpURLConnection) page_1.openConnection();
DataOutputStream data_out = new DataOutputStream(urlconnection.getOutputStream());
DataInputStream data_in = new DataInputStream(urlconnection.getInputStream());
urlconnection.setDoInput(true);
urlconnection.setDoOutput(true);
System.out.println(data_out);
System.out.println(data_in);
System.out.println(urlconnection);
答案 0 :(得分:1)
Java不会像浏览器那样加载页面并执行它包含的JS代码。它所要做的就是在响应中加载服务器发送的数据。
如果您想使用Java编程浏览器,请查看Selenium或HtmlUnit。