我有一段java代码是读xml并把它写出来。
 URL url = null;
URLConnection urlcon = null;
InputStream read = null;
String path = "";
BufferedReader buf = null;
OutputStream out = null;url = new URL(path);
//connect
urlcon = url.openConnection();
read = urlcon.getInputStream();

buf = new BufferedReader(new InputStreamReader(read,"UTF-8"));
out = response.getOutputStream();
out.write(line.getBytes());结果是无法显示 XML 页。 
使用 XSL 样式表无法查看 XML 输入。请更正错误然后单击 刷新按钮,或以后重试。 
--------------------------------------------------------------------------------文本内容中发现无效字符。处理资源 'http://localhost:60000/sis/SISConnector.do?type=11&SchoolCode=33001&CompanyId=3' 时出错。第 1 行,位置: 159 <?xml version="1.0" encoding="UTF-8"?><resumeconnector><status>1</status><errors><error>...请问错误的原因?
谢谢!