用java去除掉这段代码的HTML标签
<ulclass="attributes-list"><lititle=" 其它国内品牌">品牌: 其它国内品牌</li><lititle="&nbs...
<ul class="attributes-list">
<li title=" 其它国内品牌">品牌: 其它国内品牌</li><li title=" 3EC92">货号: 3EC92</li><li title=" 头层牛皮">帮面材质: 头层牛皮</li><li title=" 真皮">内里材质: 真皮</li><li title=" 软面皮">皮质特征: 软面皮</li><li title=" 橡胶底">鞋底材质: 橡胶底</li><li title=" 骑士靴">女鞋流行靴款: 骑士靴</li><li title=" 长靴">筒高: 长靴</li><li title=" 圆头">鞋头: 圆头</li><li title=" 低跟(小于3cm)">跟高: 低跟(小于3cm)</li><li title=" 方跟">鞋跟形状: 方跟</li><li title=" 侧拉链">闭合方式: 侧拉链</li><li title=" 皮带扣">流行元素: 皮带扣</li><li title=" 胶粘鞋">制作工艺: 胶粘鞋</li><li title=" 黑色皮里 咖啡色皮里 咖啡色绒里 黑色绒里">颜色分类: 黑色皮里 咖啡色皮里 咖啡色绒里 黑色绒里</li><li title=" 35 36 37 38 39 40 41">尺码: 35 36 37 38 39 40 41</li><li title=" 纯色">图案: 纯色</li><li title=" 冬季">适合季节: 冬季</li><li title=" 201-500元">价格区间: 201-500元</li> 展开
<li title=" 其它国内品牌">品牌: 其它国内品牌</li><li title=" 3EC92">货号: 3EC92</li><li title=" 头层牛皮">帮面材质: 头层牛皮</li><li title=" 真皮">内里材质: 真皮</li><li title=" 软面皮">皮质特征: 软面皮</li><li title=" 橡胶底">鞋底材质: 橡胶底</li><li title=" 骑士靴">女鞋流行靴款: 骑士靴</li><li title=" 长靴">筒高: 长靴</li><li title=" 圆头">鞋头: 圆头</li><li title=" 低跟(小于3cm)">跟高: 低跟(小于3cm)</li><li title=" 方跟">鞋跟形状: 方跟</li><li title=" 侧拉链">闭合方式: 侧拉链</li><li title=" 皮带扣">流行元素: 皮带扣</li><li title=" 胶粘鞋">制作工艺: 胶粘鞋</li><li title=" 黑色皮里 咖啡色皮里 咖啡色绒里 黑色绒里">颜色分类: 黑色皮里 咖啡色皮里 咖啡色绒里 黑色绒里</li><li title=" 35 36 37 38 39 40 41">尺码: 35 36 37 38 39 40 41</li><li title=" 纯色">图案: 纯色</li><li title=" 冬季">适合季节: 冬季</li><li title=" 201-500元">价格区间: 201-500元</li> 展开
2个回答
展开全部
public static String HtmlText(String inputString) {
String htmlStr = inputString; //含html标签的字符串
String textStr ="";
java.util.regex.Pattern p_script;
java.util.regex.Matcher m_script;
java.util.regex.Pattern p_style;
java.util.regex.Matcher m_style;
java.util.regex.Pattern p_html;
java.util.regex.Matcher m_html;
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标签的正则表达式
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_html = Pattern.compile("\\ ", Pattern.CASE_INSENSITIVE);
m_html = p_html.matcher(htmlStr);
htmlStr = htmlStr.replaceAll(" "," ");
textStr = htmlStr;
}catch(Exception e) {
}
return textStr;
}
传你的字符串进去看看,可以的话加分,谢谢
String htmlStr = inputString; //含html标签的字符串
String textStr ="";
java.util.regex.Pattern p_script;
java.util.regex.Matcher m_script;
java.util.regex.Pattern p_style;
java.util.regex.Matcher m_style;
java.util.regex.Pattern p_html;
java.util.regex.Matcher m_html;
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标签的正则表达式
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_html = Pattern.compile("\\ ", Pattern.CASE_INSENSITIVE);
m_html = p_html.matcher(htmlStr);
htmlStr = htmlStr.replaceAll(" "," ");
textStr = htmlStr;
}catch(Exception e) {
}
return textStr;
}
传你的字符串进去看看,可以的话加分,谢谢
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询