可以使用SimpleDateFormat類來將兩個日期合并為一種格式。下面是一個示例代碼:
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateMergeExample {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date1 = new Date();
Date date2 = new Date(System.currentTimeMillis() + 3600000); // Add 1 hour to current time
String formattedDate1 = sdf.format(date1);
String formattedDate2 = sdf.format(date2);
String mergedDates = formattedDate1 + " - " + formattedDate2;
System.out.println("Merged date: " + mergedDates);
}
}
在這個示例中,我們使用SimpleDateFormat指定了要格式化的日期格式為"yyyy-MM-dd HH:mm:ss"。然后我們創建了兩個Date對象date1和date2,并將它們分別格式化為字符串formattedDate1和formattedDate2。最后,我們將這兩個格式化后的日期字符串合并為一個字符串mergedDates,并打印輸出。