I am new in Java. I need to determine the text file's location using the file browser and then read its content using Java. So, how could I doing so? Thanks so much, Regards, Aya.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by home, durron597, rene, Stefan Gehrig, Blachshma Dec 8 '12 at 13:02
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
I'd suggest that you start with a tutorial such as this: http://docs.oracle.com/javase/tutorial/uiswing/components/filechooser.html Once you have selected the file you want to read, you need to read it. There are lots of ways to do this in Java. My favorite approach is to use a library. I'd suggest Google Guava. Using that library you can write this:
I hope this helps. |
|||
|
|