Here you can find the source of delFile(String filePath, String fileName)
public static void delFile(String filePath, String fileName)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static void delFile(String filePath, String fileName) { try {//from www . j a va 2 s . c o m File file = new File(filePath + fileName); file.delete(); } catch (Exception e) { System.err.println("delete File error"); e.printStackTrace(); } } }