I downloaded the opencsv jar file and it looks like you may be referencing it incorrectly.
Instead of this:
csvReader = createObject("java","au.com.bytecode.opencsv.CSVReader");
Try the following:
csvReader = createObject("java","com.opencsv.CSVReader");
I watched the latest version, 3.3, but I assume that it has not changed.
From the comments (my assumption was wrong)
As Lee noted in the comments, older versions of the opencsv library used a different package name than the latest version. Older versions use au.com.bytecode.opencsv , but newer versions use com.opencsv .
source share