gpt4 book ai didi

java - 链接到 html 页面

转载 作者:行者123 更新时间:2023-12-01 07:40:54 26 4
gpt4 key购买 nike

我希望能够在我的 java 应用程序中输入网址并查看该网页后面的 html。我搞不清楚了。我该如何开始?

主要问题是如何链接到网页后面的 html?

任何元信息都会有帮助。我以前没有做过任何网络方面的事情。

<小时/>

谢谢大家,这是一个巨大的帮助!

最佳答案

如果您只对特定 URL 上的页面源感兴趣,则可以使用 URL 类和 openConnection/getInputStream方法:

此示例程序打印 http://www.google.com 的内容:

import java.io.IOException;
import java.net.URL;
import java.util.Scanner;

public class Test {

public static void main(String[] args) throws IOException {
URL url = new URL("http://www.google.com");

Scanner s = new Scanner(url.openConnection().getInputStream());
while (s.hasNextLine())
System.out.println(s.nextLine());
}
}

关于java - 链接到 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5051963/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com