java工具UTILS小合集(一)

2021-09-01 18:01:39 字數 1491 閱讀 7316

/**

* 根據日期獲取星期

** @param strdate

* @return

*/public static string getweekdaybydate(string strdate) ;

******dateformat sdfinput = new ******dateformat("yyyy-mm-dd");

calendar calendar = calendar.getinstance();

date date = new date();

try catch (parseexception e)

calendar.settime(date);

int dayofweek = calendar.get(calendar.day_of_week) - 1;

if (dayofweek < 0)

dayofweek = 0;

return daynames[dayofweek];

}

/**

* 判斷是否是ie瀏覽器

* 基於md5演算法的單向加密

** @param strsrc

* 明文

* @return 返回密文

*/public static string encryptbasedmd5(string strsrc) catch (exception e)

return outstring;

}

/**

* des演算法金鑰

*/private static final byte des_key = ;

/*** 資料加密,演算法(des)

** @param data

* 要進行加密的資料

* @return 加密後的資料

*/public static string encryptbaseddes(string data) catch (exception e)

return encrypteddata;

}/**

* 資料解密,演算法(des)

** @param cryptdata

* 加密資料

* @return 解密後的資料

*/public static string decryptbaseddes(string cryptdata) catch (exception e)

return decrypteddata;

}

java工具類小知識

架包名 commons collections 3.2.1.jar 類名 collectionutils.class 集合判斷 例1 判斷集合是否為空 collectionutils.isempty null true collectionutils.isempty new arraylist tr...

Java日期工具類一

public class datetimeutil 字串轉換成timestamp param datetime 要轉換的時間字串 return 轉換失敗返回 null throws parseexception public static timestamp stringtotimestamp st...

java小作業 週末一

1.有乙個陣列求出裡面的最大元素的值和最小值 public static void main string args int b new int 2 陣列b為最大值和最小值 b 1 a 0 讓陣列b中乙個值等於陣列a中的乙個值,陣列b中另乙個值預設為0 建立進行排序的迴圈 for int i 0 i...