// 设置新闻内容
			notice.setContent(editorValue);
			Matcher m = Pattern.compile("<a[^>]*>([^<]*)</a>").matcher(editorValue);
			while (m.find()) {
				String filepath = m.group(1);
				notice.setFilepath(filepath);
			}

  

相关文章:

  • 2022-12-23
  • 2021-09-29
  • 2021-08-18
  • 2022-12-23
  • 2021-09-17
  • 2021-07-08
  • 2022-12-23
猜你喜欢
  • 2021-08-27
  • 2022-12-23
  • 2022-12-23
  • 2021-12-06
  • 2021-10-16
  • 2021-10-07
  • 2021-06-18
相关资源
相似解决方案