使用Java从网站更新html元素

时间:2016-12-13 20:23:43

标签: java html eclipse

我想通过Java使用网站更新html元素。 例如,抽搐聊天。我已经尝试过使用InputStream了,但它并没有不断刷新它。

URL url;

try {
    String a="www.google.com";
    url = new URL(a);
    URLConnection conn = url.openConnection();

    BufferedReader br = new BufferedReader(
                       new InputStreamReader(conn.getInputStream()));

    String inputLine;
    while ((inputLine = br.readLine()) != null) {
        System.out.println(inputLine);
    }
    br.close();

    System.out.println("Done");

} catch (MalformedURLException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

关于如何让它工作的任何想法?

1 个答案:

答案 0 :(得分:0)

我已经解决了问题 - 至少对于Twitch

我使用了"Pircbot" - API并将其添加到Eclipse中的构建路径中。