vote up 0 vote down star

Hai I have developed a standalone application in which when an user logs in, an log file will be created and when the application is closed the log file gets deleted.But when i shutdown the system with out closing the application the log file is not geting deleted.what can i do to delete my log file during shutdown or system crash that is when power supply is switched off when my application is running.Can someone help me to delete the log file during shutdown

Thanking you Chaithu

flag

It depends on the OS, does it not? – Burkhard Sep 7 at 10:23
Yes its an windows os – chaithu Sep 7 at 10:25
1  
So you want to do something when the power suddenly fails? Unless you use a UPS there's no chance that that will work. – Joachim Sauer Sep 7 at 10:25
lol! I think he asks when a proper shutdown is made, not sudden failure:) – Aviator Sep 7 at 10:27
i guess he's talking about a regular shutdown. you cannot cover power failure. for sure, the file won't be deleted. but that requires to be handled differently. – Atmocreations Sep 7 at 10:27

3 Answers

vote up 11 vote down check

If the VM is not properly shutdown it may not start the registered shutdown hooks. So in addition to File.deleteOnExit() (which I assume you are using, you’re not giving enough details) you should maybe also think about simply deleting all files you created in earlier invocations of your application when your application starts up.

link|flag
vote up 8 vote down

You can schedule a file for deletion when the JVM exits with the deleteOnExit() of the File class. However in a hard shutdown like a system crash, there is nothing you can do to ensure the log file is deleted cleanly. Your best option in this case would be to cleanup the next time the application starts if it's really that much of a problem.

link|flag
vote up 3 vote down

you should be able to add a shutdown hook:

this example should help you. In short, this is the basic piece of code:

class MyShutdown extends Thread {
    public MyShutdown(SimpleHook managedClass) {
        super();
        this.managedClass = managedClass;
    }
    private SimpleHook managedClass;
    public void run() {
        System.out.println("MyShutDown thread started");
        try {
            managedClass.freeResources();
        } catch (Exception ee) {
            ee.printStackTrace();
        }
    }
}


public SimpleHook() {
    // set up service termination hook (gets called
    // when the JVM terminates from a signal):
    MyShutdown sh = new MyShutdown(this);
    Runtime.getRuntime().addShutdownHook(sh);
}

regards

link|flag
Shutdown hooks may not be executed when the application is not stopped cleanly (for example, in case of a system crash or stopping the process by force). – Jesper Sep 7 at 11:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.