当前位置:   article > 正文

【学习笔记】【JAVA】获取指定HTML标签的指定属性的值(多行的也照单全收)_java读取html某个标签的value

java读取html某个标签的value

【部分参考】:https://blog.csdn.net/qi923701/article/details/79180756
(参考的例子中代码是没有考虑到换行符的)

链表形式】:

	/**
	 * 获取指定HTML标签的指定属性的值
	 * 
	 * @param source
	 *            要匹配的源文本
	 * @param element
	 *            标签名称
	 * @param attr
	 *            标签的属性名称
	 * @return 属性值列表
	 */
	public static String match(String source, String element, String attr) {
		String result = "";
		// 原博主代码是这样的
		// String reg = "<" + element + "[^<>]*?\\s" + attr + "=['\"]?(.*?)['\"]?(\\s.*?)?>";  
		String reg = "<" + element + "[^<>]*?\\s" + attr + "=['\"]?(.*?)['\"]{1}(\\s.*?)?>?";
		Matcher m = Pattern.compile(reg).matcher(source);
		while (m.find()) {
			result = m.group(1);
		}
		return result;
	}

	public static void main(String[] args) {
		String source = "<input type=\"submit\" value=\"上传\" style=\""
				+ "\nwidth: 40%;\nheight: 40px;\nbackground-color: #558afc;\nborder: none;\">"
				+ "<input type=\"submit\" value=\"\" style=\""
				+ "\nwidth: 40%;\nheight: 40px;\nbackground-color: #558afc;\nborder: none;\">"
				+ "<input type=\"submit\" value=\"删除\" style=\""
				+ "\nwidth: 40%;\nheight: 40px;\nbackground-color: #558afc;\nborder: none;\">";
		String regEx_input = "<input[^<>]*?\\svalue=['\"]?(.*?)['\"]{1}(\\s.*?)?>?";
		System.out.println(match(source, "input", "value"));
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

【输出结果】:
在这里插入图片描述
【单个形式】(获取input标签中的value值):

	public static void main(String[] args) {
		String source = "<input type=\"submit\" value=\"上传\" style=\""
				+ "\nwidth: 40%;\nheight: 40px;\nbackground-color: #558afc;\nborder: none;\">"
				+ "<input type=\"submit\" value=\"\" style=\""
				+ "\nwidth: 40%;\nheight: 40px;\nbackground-color: #558afc;\nborder: none;\">"
				+ "<input type=\"submit\" value=\"删除\" style=\""
				+ "\nwidth: 40%;\nheight: 40px;\nbackground-color: #558afc;\nborder: none;\">";
		String regEx_input = "<input[^<>]*?\\svalue=['\"]?(.*?)['\"]{1}(\\s.*?)?>?";
		Pattern p = Pattern.compile(regEx_input);
		Matcher m = p.matcher(source); // 获取 matcher 对象
		while (m.find()) {
			String group = m.group(1);
			if (!group.trim().isEmpty())
				System.out.println(group);
		}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

【输出结果】:
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/110628
推荐阅读
相关标签
  

闽ICP备14008679号