使用正則表達式刪除HTML標簽。
import java.util.regex.Matcher; import java.util.regex.Pattern; public class HTMLSpirit{ public static String delHTMLTag(String htmlStr){ String regEx_script="<script[^>]*?>[\\s\\S]*?<\\/script>"; //定義script的正則表達式 String regEx_style="<style[^>]*?>[\\s\\S]*?<\\/style>"; //定義style的正則表達式 String regEx_html="<[^>]+>"; //定義HTML標簽的正則表達式 Pattern p_script=Pattern.compile(regEx_script,Pattern.CASE_INSENSITIVE); Matcher m_script=p_script.matcher(htmlStr); htmlStr=m_script.replaceAll(""); //過濾script標簽 Pattern p_style=Pattern.compile(regEx_style,Pattern.CASE_INSENSITIVE); Matcher m_style=p_style.matcher(htmlStr); htmlStr=m_style.replaceAll(""); //過濾style標簽 Pattern p_html=Pattern.compile(regEx_html,Pattern.CASE_INSENSITIVE); Matcher m_html=p_html.matcher(htmlStr); htmlStr=m_html.replaceAll(""); //過濾html標簽 return htmlStr.trim(); //返回文本字符串 } }
Java中去掉網頁HTML標記的方法
Java里面去掉網頁里的HTML標記的方法:
/**
* 去掉字符串里面的html代碼。<br>
* 要求數據要規范,比如大於小於號要配套,否則會被集體誤殺。
*
* @param content
* 內容
* @return 去掉后的內容
*/
public static String stripHtml(String content) { // <p>段落替換為換行 content = content.replaceAll("<p .*?>", "\r\n"); // <br><br/>替換為換行 content = content.replaceAll("<br\\s*/?>", "\r\n"); // 去掉其它的<>之間的東西 content = content.replaceAll("\\<.*?>", ""); // 還原HTML // content = HTMLDecoder.decode(content); return content; }
