我想在 netbeans 中读取一个 xml 文件。我使用以下代码:
DocumentBuilderFactory dbf ; DocumentBuilder db; Document doc = null;
File file = new File(xml_url);
dbf = DocumentBuilderFactory.newInstance();
db = dbf.newDocumentBuilder();
doc = db.parse(file);
然后它给出了这个错误:Byte "239" is not a member of the (7-bit) ASCII character set.
xml标头是:
<?xml version="1.0" encoding="us-ascii"?>
我怎样才能解决这个问题?谢谢。