0
如何創建使用XML Beans和XMLOptions創建的XML文檔的標題?如何使用XMLOption(XMLBeans)創建標籤<?xml version =「1.0」encoding =「ISO-8859-1」?>
我已經開發了這樣的Java代碼正確的編碼,並刪除不必要的命名空間:
final Map<String, String> implicitNamespaces = new HashMap<String, String>();
implicitNamespaces.put("", "http://www.test.com/results");
XmlOptions xmlOptions = new XmlOptions();
xmlOptions.setSaveImplicitNamespaces(implicitNamespaces);
xmlOptions.setCharacterEncoding("ISO-8859-1");
xmlOptions.setSavePrettyPrint();
但如何創建使用的XMLBeans和XMLOptions頭?它是唯一設置硬編碼的方法嗎?如果沒有創建這個標籤的方法?