要格式化当前日期,您需要创建一个Date表示当前日期的实例,然后使用SimpleDateFormatto string 格式化它.
Date
SimpleDateFormat
DateFormat dateFormat = new SimpleDateFormat("dd MM yyyy"); String currDateString = dateFormat.format(new Date()); System.out.println(currDateString);