java轉義xml中的多餘角括弧

來源:互聯網
上載者:User

標籤:xml   java   轉義角括弧   

xml中的敏感字元是角括弧,如果xml的值中含有角括弧,那麼在解析的時候就會報錯,如:

<?xml version="1.0" encoding="UTF-8"?><books><book><id>1</id><name><三國<><演><演>義</name><price>4<>5</price><author>羅貫中</author></book></books>

需要先對這些xml檔案進行處理。
我的一個大概思路是這樣的:
先利用正則找出所有的標籤,再把標籤存入一個ArrayList中,然後對照arraylist中的值,把標籤兩端的角括弧換成標記的字串,然後轉義掉剩餘的所有角括弧,最後再把標記字串轉換成角括弧即可。
代碼如下:

import java.util.ArrayList;import java.util.List;import java.util.regex.Matcher;import java.util.regex.Pattern;public class FilterXMLUtil {    /**     * 傳入一個xml字串,將其中的多餘的<>轉義後返回     * @param xmlStr     * @return     */    public static String filterIllegalityChar(String xmlStr) {        //用來存放標籤的集合        List<String> tags = new ArrayList<String>();        //去掉最前面的兩個角括弧        xmlStr = xmlStr.replace("<?xml", "?xml").replace("\"UTF-8\"?>", "\"UTF-8\"?");        //通過正則找到所有的標籤        Pattern tag = Pattern.compile("<([a-zA-Z0-9]+)>");        Matcher mc = tag.matcher(xmlStr);        while(mc.find()){            //匹配成功之後將之存入list中            tags.add(mc.group(1));        }        /**         * 臨時替代符號         * <-----------> ^^         * >----------->~~         * </---------->##/         */        for(int i = 0;i<tags.size();i++){            xmlStr = xmlStr.replaceAll("<" + tags.get(i) + ">",                    "^^"+tags.get(i)+"~~").replaceAll("</"+tags.get(i)+">", "##/"+tags.get(i)+"~~");        }        //轉義        xmlStr = xmlStr.replaceAll("<", "&lt;").replace(">", "&gt;");        //轉換回來        xmlStr = xmlStr.replace("^^", "<").replace("~~", ">").replace("##/", "</").replace("?xml", "<?xml").replace("\"UTF-8\"?", "\"UTF-8\"?>");        return xmlStr;    }}

輸出:

<?xml version="1.0" encoding="UTF-8"?><books><book><id>1</id><name>&lt;三國&lt;&gt;&lt;演&gt;&lt;演&gt;義</name><price>4&lt;&gt;5</price><author>羅貫中</author></book></books>

這樣就可以解析這個xml字串了。

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

java轉義xml中的多餘角括弧

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.