I want to import a tab delimited file in MySQL database. How I can do this using Java?
This is very vague, but it sounds like a mysql specific question. Here's the manual for loading files. The default is:
FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\'
LINES TERMINATED BY '\n' STARTING BY ''