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