Here you can find the source of clearFile(File file)
public static void clearFile(File file) throws IOException
//package com.java2s; //License from project: Open Source License import java.io.File; import java.io.IOException; public class Main { public static void clearFile(File file) throws IOException { file.delete();/*from w ww. ja v a2 s. c om*/ file.createNewFile(); } }