java之自动过滤提交文本中的html代码script代码
public class test {
public static String Html2Text(String inputString) {
String htmlStr = inputString; // 含html标签的字符串
String textStr = "";
Pattern p_script;
Matcher m_script;
Pattern p_style;
Matcher m_style;
Pattern p_html;
Matcher m_html;
Pattern p_html1;
Matcher m_html1;
try {
String regEx_script = "<[//s]*?script[^>]*?>[//s//S]*?<[//s]*?///[//s]*?script[//s]*?>"; // 定义script的正则表达式{或<script[^>]*?>[//s//S]*?<///script>
String regEx_style = "<[//s]*?style[^>]*?>[//s//S]*?<[//s]*?///[//s]*?style[//s]*?>"; // 定义style的正则表达式{或<style[^>]*?>[//s//S]*?<///style>
String regEx_html = "<[^>]+>"; // 定义HTML标签的正则表达式
String regEx_html1 = "<[^>]+";
p_script = Pattern.compile(regEx_script, Pattern.CASE_INSENSITIVE);
m_script = p_script.matcher(htmlStr);
htmlStr = m_script.replaceAll(""); // 过滤script标签
p_style = Pattern.compile(regEx_style, Pattern.CASE_INSENSITIVE);
m_style = p_style.matcher(htmlStr);
htmlStr = m_style.replaceAll(""); // 过滤style标签
p_html = Pattern.compile(regEx_html, Pattern.CASE_INSENSITIVE);
m_html = p_html.matcher(htmlStr);
htmlStr = m_html.replaceAll(""); // 过滤html标签
p_html1 = Pattern.compile(regEx_html1, Pattern.CASE_INSENSITIVE);
m_html1 = p_html1.matcher(htmlStr);
htmlStr = m_html1.replaceAll(""); // 过滤html标签
textStr = htmlStr;
} catch (Exception e) {
}
return textStr;// 返回文本字符串
}
public static void main(String[] args) {
String url = Html2Text("<a Style='color:red'>你是傻逼</a>");
System.out.println(url);
}
}
-
- 2024年三月出生的男宝宝名字(虎年起名大全男孩名字)
-
2024-08-22
-
- 2024年男孩高分名字(给男宝宝取名字大全梓)
-
2024-08-22
-
- 命格走势又是如何?(2024年属虎宝宝五行缺什么)
-
2024-08-22
-
- 今天出生的取名宜用字(本日出生的宝宝五行八字起名字)
-
2024-08-22
-
- 2024年正月出生的男宝宝名字(正月虎五行属什么?)
-
2024-08-22
-
- 土命起名怎么看五行?(土命姓金男宝宝名字推荐)
-
2024-08-22
-
- 今天出生的取名用什么字好(本日的宝宝名字推荐)
-
2024-08-21
-
- 2024年二月五行缺什么?(2024年二月出生的女虎宝宝取名)
-
2024-08-21
-
- 2024年2月19日雨水节气出生的虎宝宝起名(2024年2月19日雨水节气出生的虎宝宝
-
2024-08-21
-
- 2024虎年虎宝宝取名应注意哪些方面(2024年虎宝宝取名赏析)
-
2024-08-21
-
- 2024年农历五月初九出生的女宝宝五行(五行缺土女宝宝起名用字精选)
-
2024-08-21
-
- 2024年12月11日出生女宝宝五行解析(2024年12月11日出生女宝宝名字怎么起最
-
2024-08-21
-
- 十一月份出生取什么名字(十一月出生宝宝取名字大全)
-
2024-08-21
-
- 好听女宝宝名字属牛(免费自动取名2024)
-
2024-08-21
-
- 姓朱的虎宝宝什么名字好(虎年宝宝姓朱的名字)
-
2024-08-21
-
- 今日出生的宜用字推荐(本日出生的宝宝起名大全免费)
-
2024-08-21
-
- 女宝宝怎么取名(2024年农历十二月腊月初二出生的宝宝八字如何)
-
2024-08-21
-
- 2024年处暑黄历(五行缺火女宝宝起名宜用字)
-
2024-08-21
-
- 2024年除夕夜出生的虎宝宝小名乳名(2024年除夕夜出生虎宝宝吉祥小名乳名)
-
2024-08-21
-
- 100分的男孩名字大全(宝宝起名男孩名大全)
-
2024-08-21