forked from JavaOPs/basejava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXmlParser.java
More file actions
37 lines (33 loc) · 1.1 KB
/
XmlParser.java
File metadata and controls
37 lines (33 loc) · 1.1 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
package com.urise.webapp.util;
import javax.xml.bind.*;
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");
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);
}
}
}