符號(hào)時(shí)如何解決,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲..."/>
溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

xml型字符串解析時(shí)存在& < >符號(hào)時(shí)如何解決

發(fā)布時(shí)間:2020-10-10 16:18:57 來源:億速云 閱讀:512 作者:小新 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)xml型字符串解析時(shí)存在& < >符號(hào)時(shí)如何解決,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

問題產(chǎn)生:

在接口調(diào)用得出一個(gè)xml型字符串,一直報(bào)錯(cuò)

The entityname must immediately follow the '&' in the entity reference

經(jīng)查發(fā)現(xiàn)  xml的內(nèi)容里存在有  &符號(hào)  而 通過dom4j讀取時(shí)  會(huì)發(fā)生錯(cuò)誤

在xml中 “&”“<”“>”這樣的標(biāo)簽存放在內(nèi)容里是不合法的,會(huì)經(jīng)常出問題。

下面找到解決方法:實(shí)測(cè)   替換  &   是可行的。

public void chartReplace(){
        String str2 = "<logentry revision='1'>" +
                "<msg>In this comment, I fixed a <bug>, and <added> file1&&file2.</msg>" +
                "</logentry>";
        System.out.println("original string: "+str2);
         
        //替換“&”:$1表示與(<msg>.*)的匹配子序列;$4表示與(.*</msg>)匹配的。
                     //&(?!amp;)表示匹配&而且后面不是amp;的字符串
        //"$1&amp;$3$4"得到的結(jié)果就是替換了<msg></msg>中的“&”為“&amp;”
        //由于每次只能替換掉一個(gè)“&”,所以循環(huán)執(zhí)行替換,直到替換后與替換前的字符串相等。
        String str1 = "";
        while(!str2.equals(str1)){
            str1 = str2;
            str2 = str1.replaceAll("(<msg>.*)(&(?!amp;))(.*</msg>)", "$1&amp;$3");
        }
        System.out.println("firstly replace \"&\": "+str2);
         
        //替換“<”
        str1 = "";
        while(!str2.equals(str1)){
            str1 = str2;
            str2 = str1.replaceAll("(<msg>.*)(<)(.*</msg>)", "$1&lt;$3");
        }
        System.out.println("then replace \"<\": "+str2);
         
        //替換“<”
        str1 = "";
        while(!str2.equals(str1)){
            str1 = str2;
            str2 = str1.replaceAll("(<msg>.*)(>)(.*</msg>)", "$1&gt;$3");
        }
        System.out.println("finally replace \">\": "+str2);
    }

關(guān)于xml型字符串解析時(shí)存在& < >符號(hào)時(shí)如何解決就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI