I was wondering how one would go about importing a text file. I want to import a file and then read it line by line.
thanks!
|
I was wondering how one would go about importing a text file. I want to import a file and then read it line by line. thanks! |
|||||
|
|
This should cover just about everything you need. http://download.oracle.com/javase/tutorial/essential/io/index.html And for a specific example: http://www.java-tips.org/java-se-tips/java.io/how-to-read-file-in-java.html This might also help: http://stackoverflow.com/questions/2714385/read-text-file-in-java |
|||
|
|
|
I've no idea what you mean by "importing" a file, but here's the simplest way to open and read a text file line by line, using just standard Java classes. (This should work for all versions of Java SE back to JDK1.1. Using Scanner is another option for JDK1.5 and later.)
|
||||
|
|
|
I didnt get what you meant by 'import'. I assume you want to read contents of a file. Here is an example method that does it
For details you can see here |
|||||||
|
|
Apache Commons IO offers a great utility called LineIterator that can be used explicitly for this purpose. The class FileUtils has a method for creating one for a file: FileUtils.lineIterator(File). Here's an example of its use:
|
|||
|
|