JAVA爬虫获取某个人文章标题以及链接

在主方法内写个method();就可以了
下面都直接复制过去可以用

private static void method() throws Exception
	{	
		while (true)
		{
			try
			{
				Scanner urio=new Scanner(System.in);
				System.out.print("CSDN某个人博客网址:");
				String uri=urio.next();
				URL url = new URL(uri);

				BufferedReader read = new BufferedReader(new InputStreamReader(url.openStream(), "utf-8"));

				
				String line ;
				while ((line = read.readLine()) != null)
				{
					//将每次获得的数据继续一行处理
					try
					{
						i = line.indexOf(uri + "/article/details/");
						int io=line.indexOf(">");
						int o=line.indexOf("</a>");
						lne = line.substring(i, io);
						lne2 = line.substring(io + 2, o);
					}
					catch (Exception e)
					{
						continue;
					}
					
					System.out.println("链接:" + lne.trim());
					System.out.println("标题:" + lne2.trim());
					Thread.sleep(100);
					
				}

				read.close();
				System.out.println("结束运行!");
				break;
			}
			catch (Exception e)
			{
				System.out.println("网址输入错误");
			}
		}
	}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

晓尘同志

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值