Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4321210
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T08:43:07+00:00 2026-05-21T08:43:07+00:00

I was trying to write a piece of Java code to read each line

  • 0

I was trying to write a piece of Java code to read each line from a file and add it to an Arraylist. Here is my code:

// try catch block removed for clarity.
file = new TextFileIn("names.txt");
String line = null;
while ((line = file.readLine()) != null) {
    list.add(line);
}

names.txt was located in the same package folder as my code. The IDE I used was Eclipse. When I run the code however I got a FileNotFoundException. The TextFileIn class comes from http://www.javaranch.com/doc/com/javaranch/common/TextFileIn.html

How could I get the file to be found?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T08:43:07+00:00Added an answer on May 21, 2026 at 8:43 am

    You’re relying on the current working directory when accessing the file. The working directory depends on how you started the application. In Eclipse it’s usually the project root folder. In commandline it’s the currently opened directory. You cannot control this from inside the Java code, so this is considered a poor practice for files which are supposed to be part of the application itself.

    The file is apparently in the same package as the running code, thus it’s already in the classpath and then you could (and should) just get it straight from the classpath.

    InputStream input = getClass().getResourceAsStream("names.txt");
    BufferedReader reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
    String line = null;
    
    while ((line = reader.readLine()) != null) {
        // ...
    }
    

    If you’re calling this in static context, then replace getClass() by YourClassName.class where YourClassName is the name of the class where this code is sitting in.

    See also:

    • getResourceAsStream() vs FileInputStream
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write a piece of code that reads a file line by
I'm trying to write a piece of code in python to get command-line options
I'm trying to write a c++ program to read a line of inputed code
I'm trying to write a piece of code that will do the following: Take
Begginer's question. I'm trying to write small piece of code in Visual Studio (VB.net)
I'm trying to write a unit test for a piece of code that generates
Am trying to write a piece of code which will allows the user to
I'm trying to write a piece of jQuery code where, if all checkboxes are
I am trying to write a piece of code for fun using C++ templates.
I am trying to write a piece of code that can parse any xml

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.