阅读量:0
在Java中,可以使用URLConnection
和BufferedReader
来输出URL页面。下面是一个简单的示例代码:
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; public class Main { public static void main(String[] args) { try { // 创建URL对象 URL url = new URL("http://example.com"); // 打开连接 URLConnection conn = url.openConnection(); // 创建输入流读取器 BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream())); // 读取页面内容并输出 String line; while ((line = reader.readLine()) != null) { System.out.println(line); } // 关闭读取器 reader.close(); } catch (IOException e) { e.printStackTrace(); } } }
在上述代码中,我们首先创建了一个URL对象,然后使用openConnection
方法打开与该URL的连接。接下来,我们创建了一个BufferedReader
对象,用于读取URL页面的内容。使用readLine
方法逐行读取页面内容,并使用System.out.println
输出到控制台。最后,关闭读取器。
请注意,上述代码需要处理IOException
异常。在实际开发中,你还可以根据自己的需求对页面内容进行处理和解析。