我有一个使用 jaxb 生成的 xml 文件。但是,standalone = yes 不会出现在 xml 文档中。有没有问题。
使用的代码是
JAXBContext context = JAXBContext.newInstance(object.getClass());
Marshaller marshall = context.createMarshaller();
marshall.setProperty(JAXB_FORMATTED_OUTPUT, true);
marshall.setProperty(Marshaller.JAXB_SCHEMA_LOCATION, schema_location);
marshall.marshal(object, outputstream);