how to import data

HI friendIn my application i want to import the data from some external files Like Excel.Could you please give me some idea to ProceedThank you very much
[181 byte] By [jofin123a] at [2007-11-26 22:24:54]
# 1
For Excel files you will probably want to use Poi: http://jakarta.apache.org/poi/
itchyscratchya at 2007-7-10 11:25:26 > top of Java-index,Desktop,Core GUI APIs...
# 2
Thank you for your reply if i want to import any txt files that contains 2000 records. How to do thatis it possible to import CSV files without using POIThank you for your service
jofin123a at 2007-7-10 11:25:26 > top of Java-index,Desktop,Core GUI APIs...
# 3

> is it possible to import CSV files without using POI

Then why didn't you ask that in your original question?

Your original question asked about importing external files like Excel. Well Excel has a proprietary format, which is why it was suggested you use POI.

Now that you've clarified the question by stating you want to "import" CSV files, you need to define what you mean by "import". A CSV file is just a text file you you can read it like any other file.

If you mean you want to "parse" a CSV file then search the forum as this question has been asked and answered several time.

Learn to search the forum before posting a question and learn to ask a clear question so we don't have to guess what you want.

camickra at 2007-7-10 11:25:26 > top of Java-index,Desktop,Core GUI APIs...