一些工具類

2021-07-09 11:28:21 字數 1990 閱讀 1559

/**

* @description: 獲取當前日期前n個月之前的年

* @param n

*/public static int getbeforeyear(int n)

/*** @description: 獲取當前日期前n個月之前的月

* @param n

*/public static int getbeforemonth(int n)

/*** @description: 獲取某年某月的第一天

* @param year

* @param month

*/public static string getfisrtdayofmonth(int year,int month)

/*** @description: 獲取某年某月的最後一天

* @param year

* @param month

*/public static string getlastdayofmonth(int year,int month)

/*** @description: 根據日期字串,返回秒值

* @return time 字元型別的秒值

*/public static long getdatesecbydatestr(string datestr) catch (parseexception e)

time = date.gettime()/1000;

return time;

} /**

* @description: 讀取內容生成檔案

* @param content

* @param filename

* @return filename

*/public static string readfilebyline(string content, string filename) catch (exception e) finally catch (exception e1)

}} return filename;

} /**

* 得到資料夾下所有檔案

* @param path

* @return file集合

*/public static listgetallfile(string path)

return list;

} /**

* description: 向ftp伺服器上傳檔案

* @param url ftp伺服器hostname

* @param port ftp伺服器端口

* @param username ftp登入賬號

* @param password ftp登入密碼

* @param path ftp伺服器儲存目錄

* @param filename 上傳到ftp伺服器上的檔名

* @param input 輸入流

* @return 成功返回true,否則返回false

*/ public static boolean uploadfile(string url,int port,string username, string password,

string path, string filename, inputstream input)

ftp.changeworkingdirectory(path);

ftp.storefile(filename, input);

input.close();

ftp.logout();

return true;

} catch (ioexception e) finally catch (ioexception ioe)

} }

} /**

* description: 獲取當前年和月的字串

*/ public static string getnowyearandmonthstr()

js的一些工具類

寫入cookie functionsetcookie name,value 刪除cookie functiondelcookie name 讀取cookie functiongetcookie name cookie相關 end form 表單 序列化 外掛程式 相關 beign var jquer...

獲取手機一些系統資訊的一些工具類

public class datautil else if page 1 frame null return true 資料獲得後的檢查 資料的error值,是否有資料,有些資料是根據時間值來做分頁的 param context param data param frame param time r...

關於cookie的一些工具類

設定cookie 設定cookie param response param name cookie名字 param value cookie值 param maxage cookie生命週期 以秒為單位 清除設定的cookie 清空cookie操作 clearcookie 清除設定的cookie,...