Here you can find the source of getFileName()
public static String getFileName()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getFileName() { SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); String date = format.format(new Date(System.currentTimeMillis())); return date; }/*w ww .j a va 2 s . com*/ }