用dom4j解析XML字符串时出现org.dom4j.DocumentException错误

 


2007年10月20日 星期六 00:22

Nested exception: The processing instruction target matching "[xX][mM][lL]" is not allowed.

因为XML字符串的开头多了一个换行

 

去除xml字符串中空格、换行、制表等的方法如下:

import java.util.regex.Matcher;

import java.util.regex.Pattern;

 

 

Pattern p = Pattern.compile(“\\s*|\t|\r|\n”);
String str="I am a, I am Hello ok, \n new line ffdsa!";
System.out.println("before:"+str);
Matcher m = p.matcher(str);
String after = m.replaceAll("");
System.out.println("after:"+after);

你可能感兴趣的:(java,xml)