Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
1.1
-
None
-
Irrelevant
Description
When db entries stored in an XML file are read into the db using the DataToDatabase Task they become malformed.
org.apache.ddlutils.io.DataReader uses FileReader (...) (which depends on the default file encoding of the system) instead of InputStreamReader(new FileInputStream(...),"UTF-8").
And for efficiency a BufferedReader can be used on top (provided it doesn't conflict with XMLStreamReader).