网站建设资讯

NEWS

网站建设资讯

java编网页源代码 使用java编写网页的代码

java中如何根据一个网址获得该网页的源代码?

package test;

创新互联公司主营凉山州网站建设的网络公司,主营网站建设方案,成都App制作,凉山州h5微信小程序开发搭建,凉山州网站营销推广欢迎凉山州等地区企业咨询

import java.io.BufferedReader;

import java.io.InputStreamReader;

import java点虐 .HttpURLConnection;

import java点虐 .URL;

public class HttpTest {

private String u;

private String encoding;

public static void main(String[] args) throws Exception {

HttpTest client = new HttpTest("", "UTF-8");

client.run();

}

public HttpTest(String u, String encoding) {

this.u = u;

this.encoding = encoding;

}

public void run() throws Exception {

URL url = new URL(u);// 根据链接(字符串格式),生成一个URL对象

HttpURLConnection urlConnection = (HttpURLConnection) url

.openConnection();// 打开URL

BufferedReader reader = new BufferedReader(new InputStreamReader(

urlConnection.getInputStream(), encoding));// 得到输入流,即获得了网页的内容

String line; // 读取输入流的数据,并显示

while ((line = reader.readLine()) != null) {

System.out.println(line);

}

}

}

根据具体问题类型,进行步骤拆解/原因原理分析/内容拓展等。

具体步骤如下:/导致这种情况的原因主要是……

Java访问指定URL并获取网页源代码

1.编写useSourceViewer 类的基本框架,该类仅包括无返回值的main ()方法,该方法从参数中获取URL,通过输入缓冲和输出缓冲将该URL 原码输出。

2.编写useSourceViewer 类,代码如下:

import java点虐 .*;

import java.io.*;

public class useSourceViewer

{

public static void main (String[] args)

{

if (args.length 0)

{

try

{

//读入URL

URL u = new URL(args[0]);

InputStream in = u.openStream( );

// 为增加性能存储输入流

in = new BufferedInputStream(in);

// 将输入流连接到阅读器

Reader r = new InputStreamReader(in);

int c;

while ((c = r.read( )) != -1)

{

System.out.print((char) c);

}

Object o = u.getContent( );

System.out.println("I got a " + o.getClass().getName( ));

}

catch (MalformedURLException e)

{

System.err.println(args[0] + " is not a parseable URL");

}

catch (IOException e)

{

System.err.println(e);

}

} // end if

} // end main

} // end SourceViewer}

用java写一个网页输入url点击查询即可在下面显示网页源代码

import java.io.*;

import java点虐 .*;

public class Demo {

public static void main(String[] args) throws Exception {

BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

System.out.println("请输入要显示源码的地址:");

URL url = new URL(br.readLine());

URLConnection conn = url.openConnection();

InputStream is = conn.getInputStream();

byte[] b = new byte[1024];

int len = 0;

while((len = is.read(b))!=-1){

System.out.println(new String(b,0,len,"UTF-8"));

}

}

}

//下班,控制台的,网页的你稍微修改一下就OK啦。


网页标题:java编网页源代码 使用java编写网页的代码
地址分享:http://cdweb.net/article/ddepdgi.html