Reputation: 103
I am trying to use csv import tool import-csv.bat
included in Apache IoTDB. I am now in Windows environment, but when running import-csv.bat
, the system reports that the main class cannot be found or the main class cannot be loaded. The current IoTDB version is 1.3. Does anyone use this version to import data and what settings do I need to change to deal with this problem?
Upvotes: 0
Views: 21
Reputation: 155
You can check the classpath
field in import-csv.bat
configuration of Apache IoTDB, and see if it is not wrapped with double quotes, which should be the reason for your error. Just wrap the classpath
in the bat file with double quotes, and the problem should be solved.
Upvotes: 0