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

I have a JAXB marshall/unmarshall process that works fine, except for this: sometimes the files I have to unmarshall are empty or not well-formatted so the unmarshall throws an Exception. This is ok, but after this exception, the file I´m unmarshalling (source xml File java object) gets blocked. I can´t use it.

I have noticed this trying to delete or rename the file right after the unmarshall exception. If no exception happens, the files can be used with no problem, as it should.

Is there any way to "unblock" this files? I think there has to be any way to release, close or liberate the resources of the JAXB context or unmarshaller object that have blocked my file.

Thanks in advance,

Dani

share|improve this question
Posting your code would help us better understand your problem. I would be interested to see what you're doing after you catch the Exception – Sujay Sep 12 '12 at 20:53

1 Answer

You could create a FileInputStream from your file and then unmarshal that. Then you have greater control over what happens when an error occurs.

FileInputStream inputStram = new FileInputStream(file);
Foo foo = (Foo) Unmarshaller unmarshal(inputStream);
share|improve this answer

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.