Suppose there is folder in C:\fileupload which contains these two csv files:
file1.csv has 2 columns(VendorID,Name)
file2.csv has 2 columns(VendorID,address)///// here VendorID is corresponding to file1.csv and is randomly placed in file2.csv
suppose file1.csv contains :
101,vendor1
102,vendor2
file2.csv contains
102,australia
101,USA
i want to retrive data from these two files and store in oracle database as:
VendorID,Name,Address
101,vendor1,USA
102,vendor2,australia
and plz be specific in telling me through java only
Any help will be much appreciated.
Thanks
textfile1.csv
textfile2.csv
output:
CSVReadLoginPass.java