i have 2 or more .csv files have following data: //csv#1 actor.id, actor.displayname, published, target.id, target.objecttype 1, test, 2014-04-03, 2, page //csv#2 actor.id, actor.displayname, published, object.id 2, testing, 2014-04-04, 3 desired output file: //csv#output actor.id, actor.displayname, published, target.id, target.objecttype, object.id 1, test, 2014-04-03, 2, page, 2, testing, 2014-04-04, , , 3 for case of might wonder: "." in header additional information in .csv file , shouldn't treated separator (the "." results conversion of json-file csv, respecting level of json-data). problem did not find solution far accepts different column counts. there fine way achieve this? did not have code far, thought following work: read 2 or more files , add each row hashmap<integer,string> //integer = linenumber, string = data , each file gets it's own hashmap iterate through indices , add data new hashmap. why think thought not goo...