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 9162519
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T14:13:49+00:00 2026-06-17T14:13:49+00:00

Sams Teach Yourself Java in 24 Hours Sixth Edition by Rogers Cadenhead Chapter 20

  • 0

Sams Teach Yourself Java in 24 Hours Sixth Edition by Rogers Cadenhead Chapter 20 ConfigWriter.java error

I am a Java beginner. I am going through the Java book listed in the title of this post. I am super stumped at how this cannot work. The code is supposed to create a file called program.properties and put the text in lines 10 through 12 in it.

import java.io.*;

class ConfigWriter {
String newline = System.getProperty("line.separator");

ConfigWriter() {
    try {
        File file = new File("program.properties");
        FileOutputStream fileStream = new FileOutputStream(file);
        write(fileStream, "username=max");
        write(fileStream, "score=12550");
        write(fileStream, "level=5");
    } catch (IOException ioe) {
        System.out.println("Could not write file");
    }
}

void write(FileOutputStream stream, String output)
    throws IOException {

    output = output + newline;
    byte[] data = output.getBytes();
    stream.write(data, 0, data.length);
}

public static void main(String[] arguments) {
    ConfigWriter cw = new ConfigWriter();
}

}

Instead it does absolutely nothing. Its completely blank. I would most appreciate any help at all with this error!

  • 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-06-17T14:13:50+00:00Added an answer on June 17, 2026 at 2:13 pm

    The most likely problem is that you are confused about where the file will be written.

    If you write to a file using a relative pathname (like “program.properties”), Java will attempt to open / create the file in the application’s “current directory”.

    • If you run the code directly from the command prompt / shell, the current directory will be the shell’s current directory … at the point that you ran the program.

    • If you launch using a wrapper script, then the script could change the current directory before starting the program.

    • If you launch from an IDE, then the IDE determines what the current directory will be.

    • And so on.

    To avoid this problem, use an absolute pathname.

    It would also be instructive to figure out where that file was actually written. On Windows you could try using the Search tool. On Linux, the find command is a good choice; e.g.

      $ sudo find / -name properties.properties | less
    

    … and wait.


    Note that flushing and closing are not necessary in this particular example. You are using a FileOutputStream which is not buffered. However, if you wanted to do that, your code would need to look like this:

    File file = new File("program.properties");
    try (FileOutputStream fileStream = new FileOutputStream(file)) {
        write(fileStream, "username=max");
        write(fileStream, "score=12550");
        write(fileStream, "level=5");
        fileStream.flush();
    } catch (IOException ioe) {
        System.out.println("Could not write file");
    }
    

    Note that the fileStream is implicitly closed because we declared it as a “resource” following the try

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am going through the Sams book Teach Yourself WPF in 24 Hours. At
I am very new to iPhone dev and while going through Sams Teach Yourself
Ok, so. I ordered a book on Java (Sams teach yourself java in 21
I'm following this book, Teach Yourself Android Application Development in 24 Hours, 2nd Edition
I am working my way through Sams Teach Yourself C# in 21 Days, obviously,
Currently working through a tutorial on JOX included within Sams Teach Yourself JavaServer Pages
I am reading sams teach yourself WPF in 24 hours from 2008. I am
I am learning this via Sams Teach Yourself Android in 24 hours. This is
I am trying to learn C++, and I am working through Sams Teach Yourself
Currently I am going through a Sams learn Android SDK in 24 hours book

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.