utils4s工具類常用入門工具操作

2021-10-03 18:43:05 字數 988 閱讀 6311

datetimeformat    日期格式化與解析(與joda原框架裡datetimeformatter等價)

datetime    日期時間(支援時區轉換)#2020-03-01t00:02:02.000+08:00

localdatetime    本地日期時間(沒有時區) #2020-03-01t00:02:02.000

localdate    本地日期(沒有小時,沒有時區)#2020-03-01

localtime    本地時間(沒有日期,沒有時區)#00:02:02.000

import com.github.nscala_time.time.imports._

import org.joda.time.periodtype

//時間類工具常用操作demo

object dateutilsdemo 天,$小時,$分鐘")

//一些常用日期(時間)函式

println(date1.getdayofyear ) //這個年的第幾天

println(date1.getdayofmonth ) //這個月的第幾天

println(date1.getdayofweek ) //這個星期的第幾天(星期幾)

println(date1.withdayofweek(1)) //這一周的星期一的日期

println(date1.dayofmonth().getmaximumvalue) //這個月有多少天

println(date1.dayofyear().getmaximumvalue) //今年有多少天

println(date1.gethourofday) //當天第幾個小時

println(date.getminuteofday) //當天第幾分鐘

}}

CollectionUtils工具類的常用方法

集合判斷 例1 判斷集合是否為空 collectionutils.isempty null true collectionutils.isempty new arraylist true collectionutils.isempty false 例2 判斷集合是否不為空 collectionuti...

造輪子 utils工具類(常用方法的封裝)

封裝的常用方法,方法名引數介紹 judgenull value 判斷空值,包括 和,空為true,否則為false judgestring value 判斷是否為字串型別,是為true,否則為false judgenumber value 判斷是否為數字型別,是為true,否則為false judg...

(集合框架)collections工具類的常用方法

複習完了集合框架,再來看一下collections工具類的一些基本用法,更加完善集合框架的知識庫。1 什麼是collections呢?collections是對集合框架的乙個工具類。它裡邊的方法都是靜態的,不需要建立物件。並未封裝特有資料。在collections工具類中大部分方法是用於對list集...