正则表达式去除html标签


/**
 * 删除Html标签
 * 
 * @param inputString
 * @return
 */
public static String htmlRemoveTag(String inputString) {
    if (inputString == null)
        return null;
    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 {
        //定义script的正则表达式{或<script[^>]*?>[\\s\\S]*?<\\/script>
        String regEx_script = "<[\\s]*?script[^>]*?>[\\s\\S]*?<[\\s]*?\\/[\\s]*?script[\\s]*?>"; 
        //定义style的正则表达式{或<style[^>]*?>[\\s\\S]*?<\\/style>
        String regEx_style = "<[\\s]*?style[^>]*?>[\\s\\S]*?<[\\s]*?\\/[\\s]*?style[\\s]*?>"; 
        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标签
        textStr = htmlStr;
    } catch (Exception e) {
        e.printStackTrace();
    }
    return textStr;// 返回文本字符串
}


	public static void requestPost(String ipString) throws IOException{
	       /** 
         * 首先要和URL下的URLConnection对话。 URLConnection可以很容易的从URL得到。比如: // Using 
         * java.net.URL and //java.net.URLConnection 
         *  
         * 使用页面发送请求的正常流程:在页面http://www.faircanton.com/message/loginlytebox. 
         * asp中输入用户名和密码,然后按登录, 
         * 跳转到页面http://www.faircanton.com/message/check.asp进行验证 验证的的结果返回到另一个页面 
         *  
         * 使用java程序发送请求的流程:使用URLConnection向http://www.faircanton.com/message/ 
         * check.asp发送请求 并传递两个参数:用户名和密码 然后用程序获取验证结果 
         */  
        URL url = new URL("http://199604.com/ip/");  
        URLConnection connection = url.openConnection();
        /** 
         * 然后把连接设为输出模式。URLConnection通常作为输入来使用,比如下载一个Web页。 
         * 通过把URLConnection设为输出,你可以把数据向你个Web页传送。下面是如何做: 
         */  
        connection.setDoOutput(true);  
        /** 
         * 最后,为了得到OutputStream,简单起见,把它约束在Writer并且放入POST信息中,例如: ... 
         */  
        OutputStreamWriter out = new OutputStreamWriter(  
                connection.getOutputStream(), "8859_1");  
        out.write("ip=" + ipString + "&action=2"); // 向页面传递数据。post的关键所在!  
        // out.write("username=kevin&password=*********"); //向页面传递数据。post的关键所在!  
        // remember to clean up  
        out.flush();  
        out.close();  
        /** 
         * 这样就可以发送一个看起来象这样的POST: POST /jobsearch/jobsearch.cgi HTTP 1.0 ACCEPT: 
         * text/plain Content-type: application/x-www-form-urlencoded 
         * Content-length: 99 username=bob password=someword 
         */  
        // 一旦发送成功,用以下方法就可以得到服务器的回应:  
        String sCurrentLine;  
        String sTotalString;  
        sCurrentLine = "";  
        sTotalString = "";  
        InputStream l_urlStream;  
        l_urlStream = connection.getInputStream();//获取返回的Html内容
        // 传说中的三层包装阿!  

        BufferedReader l_reader = new BufferedReader(new InputStreamReader(  
                l_urlStream));
        System.out.println("第一次过滤");
        while ((sCurrentLine = l_reader.readLine()) != null) {  
            sTotalString+= sCurrentLine;
            
        }
        
          
        String regEx_script = "<script[^>]*?>.*?</script>";
        sTotalString = sTotalString.replaceAll(regEx_script, "");
        
        String regEx_style = "<style[^>]*?>.*?</style>"; 
        sTotalString = sTotalString.replaceAll(regEx_style, "");
        
        String html_regex = "<(.[^>]*)>";// /过滤标签的规则  
        Pattern p = Pattern.compile(html_regex);// 将规则封装成对象  
        
        BufferedReader htmlbufr = new BufferedReader(new StringReader(sTotalString));
        
        BufferedWriter bufw = new BufferedWriter(new OutputStreamWriter(  
                new FileOutputStream("E://IpHTML.txt")));  
        while ((sCurrentLine = htmlbufr.readLine()) != null) { 
        	 sCurrentLine = sCurrentLine.replaceAll(html_regex, "");  
            bufw.write(sCurrentLine);  
            bufw.newLine();// /换行  
            bufw.flush();// 刷新  
  
        }  
        bufw.close();   
        System.out.println("第一次过滤完毕,开始下一轮过滤");  
        
	}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值