java 用什么方法删除服务器的文件,这是保存的fileUtil里的:
    public static void save(File upload, String uploadFileName, String savePath) {
        savePath = createFolder(savePath);
        write(upload, new File(savePath, uploadFileName), false);
    }删除的怎么写?java