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

  • Home
  • SEARCH
  • 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 8857175
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:31:42+00:00 2026-06-14T14:31:42+00:00

So I have a method to write a string to a file: public static

  • 0

So I have a method to write a string to a file:

 public static void saveStringToFile(String path, String string) {

    File file = new File(path);
    if (!file.exists()) {
        try {
            file.createNewFile();
        } catch (IOException e) {
            e.printStackTrace();

        }
    }

    FileWriter out = null;
    try {
        out = new FileWriter(path);
        out.write(string);
        if (out != null) {
            out.close();
        }
    } catch (FileNotFoundException e) {

        e.printStackTrace();

    } catch (IOException e) {
        e.printStackTrace();
    }

}

And my test class with the following setUp method which runs before each test (to delete the testfile before each one):

public static final String TEST_FILE = "somefile.xml";

//…

@Before
public void setUp() throws IOException {
    if (MyCustomClass.fileExists(TEST_FILE)) {
        new File(TEST_FILE).delete();
    }
}

Each of my test tries to write something to the file using the method saveStringToFile(). It succeeds like for a couple of times, but a some random point I finally get the java.io.IOException: Access is denied. Got no idea why this happens – sometimes it occurs in test1, sometimes in test3…

It was working OK, when I was using Java7 FileIO, but I needed to migrate back to Java6…

  • 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-14T14:31:44+00:00Added an answer on June 14, 2026 at 2:31 pm

    So, probably JUnit wasn’t running it parrallel, cause as I suppose It doesn’t do it by default.

    The problem was in my readfile method:

    private String readFile(String path) throws FileNotFoundException {
        return (new Scanner(new File(path))).useDelimiter("\\Z").next();
    }
    

    To work fine I had to fix

    private String readFile(String path) throws FileNotFoundException {
        Scanner scanner = (new Scanner(new File(path)));
        String s = scanner.useDelimiter("\\Z").next();
        scanner.close();
        return s;
    }
    

    The close() method for Scanner was the key…

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

Sidebar

Related Questions

I have method to compress file with GZip: public static void CompressFile(string filePath) {
Suppose you have a Java class which defines a copyFile(String, String) method: public class
Here is what I have right now. Receiver: public static void read(Socket socket, ObjectInputStream
I have a class using ReaderWriterLockSlim with a read method and a write method
i have the following method in a usercontrol protected override void Render(HtmlTextWriter writer) {
I have written a method which writes an object to file. I used generics
I have a ASP.NET SOAP web service whose web method creates a PDF file,
I'm creating a class to manage text files. I have a method to write
I have a saga that has 3 states; Initial, ReceivingRows, Completed - public static
I have problem while writing to the file. I want to write contents of

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.