如果需要获取精确到微秒的时间可以使用下面方法:
public static String getNowTime(){
LocalDateTime localDateTime=LocalDateTime.now();
return localDateTime.getYear()+"-"+localDateTime.getMonthValue()+"-"+localDateTime.getDayOfMonth()+
" "+localDateTime.getHour()+":"+localDateTime.getMinute()+":"+localDateTime.getSecond()+"."+
localDateTime.getNano()/1000;
}