這篇文章將為大家詳細(xì)講解有關(guān)xml型字符串解析時(shí)存在& < >符號(hào)時(shí)如何解決,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
我們提供的服務(wù)有:做網(wǎng)站、成都網(wǎng)站建設(shè)、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、潞州ssl等。為上千企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢(xún)和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的潞州網(wǎng)站制作公司
問(wèn)題產(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) 而 通過(guò)dom4j讀取時(shí) 會(huì)發(fā)生錯(cuò)誤
在xml中 “&”“<”“>”這樣的標(biāo)簽存放在內(nèi)容里是不合法的,會(huì)經(jīng)常出問(wèn)題。
下面找到解決方法:實(shí)測(cè) 替換 & 是可行的。
public void chartReplace(){ String str2 = "" + " "; System.out.println("original string: "+str2); //替換“&”:$1表示與(In this comment, I fixed a " + ", and file1&&file2. .*)的匹配子序列;$4表示與(.* )匹配的。 //&(?!amp;)表示匹配&而且后面不是amp;的字符串 //"$1&$3$4"得到的結(jié)果就是替換了中的“&”為“&” //由于每次只能替換掉一個(gè)“&”,所以循環(huán)執(zhí)行替換,直到替換后與替換前的字符串相等。 String str1 = ""; while(!str2.equals(str1)){ str1 = str2; str2 = str1.replaceAll("( .*)(&(?!amp;))(.* )", "$1&$3"); } System.out.println("firstly replace \"&\": "+str2); //替換“<” str1 = ""; while(!str2.equals(str1)){ str1 = str2; str2 = str1.replaceAll("(.*)(<)(.* )", "$1<$3"); } System.out.println("then replace \"<\": "+str2); //替換“<” str1 = ""; while(!str2.equals(str1)){ str1 = str2; str2 = str1.replaceAll("(.*)(>)(.* )", "$1>$3"); } System.out.println("finally replace \">\": "+str2); }
關(guān)于xml型字符串解析時(shí)存在& < >符號(hào)時(shí)如何解決就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。