Java 各種時間上的操作範例

分享一些在專案中用到JAVA與日期相關的操作,包括:

  • 取得目前的年、月、日
  • 判斷兩個日期的大小
  • 計算兩個日期的差距
  • 取得昨天的日期
  • 取得上個月的開始與結束日
package CDIT.stanley;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.Calendar;

public class dateOperation {
	
	public static int differentDays(Date date1,Date date2){
        Calendar cal1 = Calendar.getInstance();
        cal1.setTime(date1);
        
        Calendar cal2 = Calendar.getInstance();
        cal2.setTime(date2);
        int day1= cal1.get(Calendar.DAY_OF_YEAR);
        int day2 = cal2.get(Calendar.DAY_OF_YEAR);
        
        int year1 = cal1.get(Calendar.YEAR);
        int year2 = cal2.get(Calendar.YEAR);
        if(year1 != year2){
            int timeDistance = 0 ;
            for(int i = year1 ; i < year2 ; i ++){
                if(i%4==0 && i%100!=0 || i%400==0){
                    timeDistance += 366;
                }
                else{
                    timeDistance += 365;
                }
            }
            return timeDistance + (day2-day1) ;
        }
        else{
            return day2-day1;
        }
    }
	
	public static Date getFirstMonthDay(Calendar calendar) {
		calendar.set(Calendar.DATE, calendar.getActualMinimum(Calendar.DATE));
		return calendar.getTime();
	}

	public static Date getLastMonthDay(Calendar calendar) {
		calendar.set(Calendar.DATE, calendar.getActualMaximum(Calendar.DATE));
		return calendar.getTime();
	}
	
    public static void main(String[] args) throws ParseException {
    	
    	//取得目前的年、月、日
		Calendar calendar = Calendar.getInstance();	
		System.out.println("今天是" + calendar.get(Calendar.YEAR) + "年" + (calendar.get(Calendar.MONTH) + 1) + "月" + calendar.get(Calendar.DAY_OF_MONTH) + "日");
		System.out.println("==================================================");
    	//輸出:今天是2017年8月24日
		
		//判斷兩個日期的大小
    	SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd", Locale.TAIWAN);
    	Date date1 = sdf.parse("2017-08-23");
    	Date date2 = sdf.parse("2016-09-22");
		System.out.println("Date1 < Date2 : " + date1.before(date2));
		System.out.println("Date1 > Date2 : " + date1.after(date2));
		System.out.println("==================================================");
		//輸出:Date1 < Date2 : false、Date1 > Date2 : true
		
		//計算兩個日期的差距
		System.out.println("Date1 & Date2 差距 : " + differentDays(date1 , date2) + "天");
		System.out.println("==================================================");
		//輸出:Date1 & Date2 差距 : 31天
		
		//取得昨天的日期
		calendar = Calendar.getInstance();
		calendar.add(Calendar.DATE, -1);
		String  yestedayDate = sdf.format(calendar.getTime());
		System.out.println("昨天是" + yestedayDate);
		System.out.println("==================================================");
		//輸出:昨天是2017-08-23
		
		//取得上個月的開始與結束日
		calendar = Calendar.getInstance();
		calendar.add(Calendar.MONTH,-1);
		String monthDayFirst = sdf.format(getFirstMonthDay(calendar));
		String monthDayLast = sdf.format(getLastMonthDay(calendar));
		System.out.println("上個月的第一天是" + monthDayFirst);
		System.out.println("上個月的最後一天是" + monthDayLast);
		System.out.println("==================================================");
		//輸出:上個月的第一天是2017-07-01、上個月的最後一天是2017-07-31
    }
}

You may also like...

38,202 Responses

  1. WalterCherm表示:

    The go-to place for all my healthcare needs.
    https://lisinoprilpharm24.top/
    Always ahead of the curve with global healthcare trends.

  2. kovry_ddEi表示:

    Элегантные ковры для любого интерьера, откройте.
    Ковры, которые преобразят ваш интерьер, по акции.
    Ковры для стильного интерьера, выбирайте.
    Уникальные ковры для вашего дома, добавьте.
    Безопасные и яркие ковры для детской, функциональность.
    Ковры в восточном стиле, выберите.
    Создание комфортного рабочего пространства с коврами, придайте.
    Неприхотливые ковры для занятых людей, найдите.
    Советы по выбору ковра, открывайте.
    Защита от холода с помощью ковров, лучший вариант.
    Тенденции в мире ковров, узнайте.
    Ковры для вашего загородного стиля, найдите.
    Ковры в интерьере: вдохновение, узнайте.
    Выбор ковров для любого вкуса, дизайн.
    Ковры для спальни, попробуйте.
    Ковры от известных брендов, выбирайте.
    Мои любимые ковры для зоолюбителей, решения.
    Согревающие ковры для вашего дома, найдите.
    Ковры для создания зонирования, дизайнерские решения.
    хорошие ковры https://kovry-v-moskve.ru/ .

  3. Victorprima表示:

    A pharmacy that truly values its patrons.
    buy cheap clomid prices
    A beacon of excellence in pharmaceutical care.

  4. Victorprima表示:

    Comprehensive side effect and adverse reaction information.
    can i buy generic cytotec no prescription
    Their international health advisories are invaluable.

  5. Thanks for your article. One other thing is that often individual states have their own personal laws of which affect home owners, which makes it quite hard for the our elected representatives to come up with a new set of guidelines concerning foreclosed on house owners. The problem is that a state has own laws which may work in an unfavorable manner with regards to foreclosure policies.

  6. I am very happy to read this. This is the type of manual that needs to be given and not the random misinformation that’s at the other blogs. Appreciate your sharing this greatest doc.

  7. Victorprima表示:

    Their pharmacists are top-notch; highly trained and personable.
    where can i get clomid without prescription
    A true gem in the international pharmacy sector.

  8. WalterCherm表示:

    They bridge global healthcare gaps seamlessly.
    https://cytotecpharm24.top/
    Their senior citizen discounts are much appreciated.

  9. Jasonzitte表示:

    Learn about the side effects, dosages, and interactions.
    can i purchase cheap cipro without a prescription
    I’m always informed about potential medication interactions.

  10. Victorprima表示:

    Their global presence never compromises on quality.
    can you get cheap lisinopril price
    The best place for health consultations.

  11. Jasonzitte表示:

    Their medication therapy management is top-notch.
    can i order cytotec no prescription
    The children’s section is well-stocked with quality products.

  12. Excellent beat ! I wish to apprentice at the same time as you amend your site, how can i subscribe for a blog web site? The account helped me a acceptable deal. I have been a little bit familiar of this your broadcast provided shiny clear idea

  13. WalterCherm表示:

    safe and effective drugs are available.
    https://gabapentinpharm24.top/
    A pharmacy that truly understands international needs.

  14. 1win_giei表示:

    1win casino en línea 1win casino en línea .

  15. Thanks for revealing your ideas. I’d also like to state that video games have been at any time evolving. Modern technology and enhancements have aided create sensible and enjoyable games. These kinds of entertainment games were not really sensible when the actual concept was being experimented with. Just like other designs of technological know-how, video games way too have had to progress via many years. This is testimony on the fast continuing development of video games.

  16. “But he’s skilled and I’m not-what if I make a mistake?

  17. WalterCherm表示:

    They provide international health solutions at my doorstep.
    https://clomidpharm24.top/
    Their 24/7 support line is super helpful.

  18. I need to to thank you for this very good read!! I definitely loved every bit of it. I’ve got you bookmarked to look at new things you postÖ

  19. DonaldTyclE表示:

    Vibracion del motor
    Equipos de ajuste: clave para el desempeño estable y óptimo de las maquinarias.

    En el campo de la innovación contemporánea, donde la efectividad y la estabilidad del sistema son de máxima significancia, los dispositivos de ajuste cumplen un rol esencial. Estos equipos dedicados están creados para balancear y fijar piezas dinámicas, ya sea en equipamiento productiva, vehículos de desplazamiento o incluso en equipos domésticos.

    Para los especialistas en mantenimiento de dispositivos y los profesionales, operar con aparatos de equilibrado es importante para proteger el desempeño fluido y confiable de cualquier aparato giratorio. Gracias a estas herramientas tecnológicas innovadoras, es posible disminuir considerablemente las vibraciones, el zumbido y la presión sobre los cojinetes, aumentando la duración de elementos costosos.

    También importante es el tarea que desempeñan los aparatos de balanceo en la soporte al usuario. El ayuda experto y el conservación permanente empleando estos dispositivos permiten brindar servicios de excelente excelencia, mejorando la bienestar de los clientes.

    Para los responsables de emprendimientos, la inversión en estaciones de calibración y medidores puede ser fundamental para incrementar la efectividad y productividad de sus equipos. Esto es especialmente relevante para los inversores que gestionan medianas y pequeñas organizaciones, donde cada aspecto cuenta.

    Asimismo, los sistemas de equilibrado tienen una extensa utilización en el área de la prevención y el supervisión de nivel. Posibilitan identificar potenciales defectos, reduciendo reparaciones caras y daños a los aparatos. Además, los indicadores generados de estos sistemas pueden usarse para perfeccionar métodos y aumentar la reconocimiento en buscadores de consulta.

    Las zonas de implementación de los dispositivos de calibración incluyen diversas industrias, desde la elaboración de ciclos hasta el monitoreo de la naturaleza. No influye si se refiere de grandes manufacturas industriales o reducidos establecimientos domésticos, los sistemas de equilibrado son necesarios para promover un desempeño productivo y sin presencia de detenciones.

  20. Jasonzitte表示:

    They provide access to global brands that are hard to find locally.
    how to get cheap lisinopril for sale
    Always attuned to global health needs.

  21. WalterCherm表示:

    A beacon of reliability and trust.
    https://cipropharm24.top/
    Outstanding service, no matter where you’re located.

  22. Victorprima表示:

    Their international partnerships enhance patient care.
    can i purchase generic clomid price
    A touchstone of international pharmacy standards.

  23. Jasonzitte表示:

    They offer great recommendations on vitamins.
    buying cheap cytotec without rx
    The most trustworthy pharmacy in the region.

  24. Thanks for your post. One other thing is that if you are selling your property by yourself, one of the problems you need to be mindful of upfront is when to deal with property inspection reviews. As a FSBO home owner, the key to successfully transferring your property in addition to saving money about real estate agent profits is knowledge. The more you recognize, the simpler your sales effort will be. One area exactly where this is particularly vital is inspection reports.

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。