Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to convert XML file to java objects efficiently but I haven't succeeded yet. I have seen JAXB notation, and a few others but they havent looked efficient to me and I need to use json. I need help with efficient code example.

share|improve this question
Good to hear that you have attempted this. What have you tried? – Reimeus Aug 27 '12 at 11:54
1  
Use JAXB is the better option to proceed further for marshalling and unmarshalling in java – The Unlucky Aug 27 '12 at 11:54
You could have at the very least provided an XML snippet you're trying to convert and the corresponding java class. – Strelok Aug 27 '12 at 11:56
i tried unmarshalling by using JAXB but i had an exception about resource finding. it means i locate the xml file to wrong place. i located it webcontent in eclipse project but resuorce can't be found – erdysson Aug 27 '12 at 12:05
I handled the problem. Thanks a lot to that tries t help. I used JAXB and with a little difference; importing the other version of the same named libray. thanks – erdysson Aug 27 '12 at 12:48

1 Answer

Do not invent the wheel. These libraries (GSON, Jackson...) are pretty fast, tested and have huge community. If it was easy to write things better, it would have been already done.

And this is not really a question ;-)

share|improve this answer
i tried unmarshalling by using JAXB but i had an exception about resource finding. it means i locate the xml file to wrong place. i located it webcontent in eclipse project but resuorce can't be found – erdysson Aug 27 '12 at 12:01
1  
update your question (exception, file hierarchy etc.). From your current post it is really hard to guess what went wrong and what you expect. – malejpavouk Aug 27 '12 at 12:03
JAXBContext context1 = JAXBContext.newInstance(JavaObject.class);final Unmarshaller unmarshaller = context1.createUnmarshaller(); File file = new File("sample-xml.xml"); final JavaObject object = (JavaObject) unmarshaller.unmarshal(new FileInputStream(file)); – erdysson Aug 27 '12 at 12:07
in this case, i get file not found exception – erdysson Aug 27 '12 at 12:09
and where is the file, if in src directory, tham 1) make sure, that you have maven resources polugin configured 2) you should load it using classloader.getResource(). Also file has method getAbsolutePath, so printout the path and make sure, that the file is there. – malejpavouk Aug 27 '12 at 12:13
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.