You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm new to ofx4j. I'm trying to follow the logic in TestNanoXMLOFXReader.java to parse ofx files. But when there are more than one STMTTRN aggregate in the file, the DefaultHandler in TestNanoXMLOFXReader drops all STMTTRN except the very last one. It seems that it is because of the usage of TreeMap structure to keep track of the aggregate information. I think using a List instead of TreeMap to keep track the aggregate information would fix the problem. Or maybe there is some other way to parse ofx files?
The text was updated successfully, but these errors were encountered:
I'm new to ofx4j. I'm trying to follow the logic in TestNanoXMLOFXReader.java to parse ofx files. But when there are more than one STMTTRN aggregate in the file, the DefaultHandler in TestNanoXMLOFXReader drops all STMTTRN except the very last one. It seems that it is because of the usage of TreeMap structure to keep track of the aggregate information. I think using a List instead of TreeMap to keep track the aggregate information would fix the problem. Or maybe there is some other way to parse ofx files?
The text was updated successfully, but these errors were encountered: