我有一个使用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);