-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXmlParser.java
More file actions
44 lines (37 loc) · 1.3 KB
/
XmlParser.java
File metadata and controls
44 lines (37 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package ru.javaops.webapp.util;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import java.io.Reader;
import java.io.Writer;
public class XmlParser {
private final Marshaller marshaller;
private final Unmarshaller unmarshaller;
public XmlParser(Class... classesToBeBound) {
try {
JAXBContext ctx = JAXBContext.newInstance(classesToBeBound);
marshaller = ctx.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.setProperty(Marshaller.JAXB_ENCODING, "UTF-8");
// marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);
unmarshaller = ctx.createUnmarshaller();
} catch (JAXBException e) {
throw new IllegalStateException(e);
}
}
public <T> T unmarshall(Reader reader) {
try {
return (T) unmarshaller.unmarshal(reader);
} catch (JAXBException e) {
throw new IllegalStateException(e);
}
}
public void marshall(Object instance, Writer writer) {
try {
marshaller.marshal(instance, writer);
} catch (JAXBException e) {
throw new IllegalStateException(e);
}
}
}