Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PrintWriter creates file but doesn't write [duplicate]

I used the example code on a website somewhere and it looks like this:

package gdt.enlightening;

import notify.*;
import javax.swing.*;
import java.io.*;
import java.util.logging.Level;
import java.util.logging.Logger;

public class export {
    public static void Export(String path) {

        try {
            // Package.json
            File file = new File(path + "/package.json");

            FileWriter pw = new FileWriter(file);
            pw.write("test");
            pw.write("Hi!");

            pw.write("    \"id\": \"" + main.packageID + "\",\r\n");
            pw.write("    \"name\": \"test\",");

            notify.Notify.info("GDT Enlightening", "Finished exporting without errors.");
        } catch (Exception e) {
            System.out.println(e.toString());
        }
    }
}

It creates the file but leaves it completely empty. I do not seem to figure out why. Do I need a "File" object?

I've tried different solutions found on here but it doesn't work. I've also played around with the printing method.

EDIT: Fixed by calling pw.close() at the end

like image 585
user3902017 Avatar asked Dec 11 '22 03:12

user3902017


1 Answers

You should add pw.close() to fix this problem.

Else that data will be lost in a buffer.

like image 55
user3902017 Avatar answered Dec 25 '22 13:12

user3902017