Java常用工具類

StringUtils

StringUtilsStringUtil的實在是太多了,首先就是大名鼎鼎的org.apache.commons.lang3.StringUtils,提供了如isEmptyisNotEmptyisBlank饱亮、isNotBlank等等的常用字符串判空方法,非常的實用;另外一個比較常見的提供者就是org.springframework.util.StringUtils沫屡,我們在看Spring的源碼的時候經(jīng)常會見到,但其實他用的是自己寫的工具類撮珠,并不是apache提供的沮脖,這里面也提供了許多類似的方法,如isEmpty芯急、hasLength勺届、hasText等,如果你的系統(tǒng)采用的是Spring框架的話娶耍,那么可以直接使用這個工具類免姿。

BeanUtils

org.springframework.beans.BeanUtils
JavaBeans的靜態(tài)方法:用于實例化bean、檢查bean屬性類型榕酒、復制bean屬性等胚膊。

避免用Apache Beanutils進行屬性的copy。
說明:Apache BeanUtils性能較差想鹰,可以使用其他方案比如Spring BeanUtils, Cglib BeanCopier
-- 阿里巴巴Java開發(fā)規(guī)范

public static void copyProperties(Object source, Object target) throws BeansException

StandardCharsets

java.nio.charset.StandardCharsets
如果不想直接寫"UTF-8"這個字符串紊婉,那么可以直接用StandardCharsets.UTF_8.name()
支持的Charset:

    /**
     * Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the
     * Unicode character set
     */
    public static final Charset US_ASCII = Charset.forName("US-ASCII");
    /**
     * ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1
     */
    public static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
    /**
     * Eight-bit UCS Transformation Format
     */
    public static final Charset UTF_8 = Charset.forName("UTF-8");
    /**
     * Sixteen-bit UCS Transformation Format, big-endian byte order
     */
    public static final Charset UTF_16BE = Charset.forName("UTF-16BE");
    /**
     * Sixteen-bit UCS Transformation Format, little-endian byte order
     */
    public static final Charset UTF_16LE = Charset.forName("UTF-16LE");
    /**
     * Sixteen-bit UCS Transformation Format, byte order identified by an
     * optional byte-order mark
     */
    public static final Charset UTF_16 = Charset.forName("UTF-16");

CharEncoding

org.apache.commons.lang3.CharEncoding
里面定義了許多常用的編碼格式
ISO-8859-1辑舷、US-ASCII喻犁、UTF-8

/**
* @deprecated Please use {@link Charset#isSupported(String)} instead, although be aware that {@code null}
* values are not accepted by that method and an {@link IllegalCharsetNameException} may be thrown.
*/
boolean isSupported(final String name)

新版的CharEncoding已經(jīng)被標記為@Deprecated,因為JDK7已經(jīng)自帶了java.nio.charset.StandardCharsets惩妇,我們可以直接使用JDK自帶的StandardCharsets株汉。

HtmlUtils

org.springframework.web.util.HtmlUtils

//對HTML里的標簽進行轉(zhuǎn)義
public static String htmlEscape(String input, String encoding)

另見org.springframework.web.util.JavaScriptUtils

ObjectUtils

org.springframework.util.ObjectUtils

// Determine whether the given object is empty
public static boolean isEmpty(@Nullable Object obj)
// Determine whether the given array is empty
public static boolean isEmpty(@Nullable Object[] array) {
// Return whether the given throwable is a checked exception
public static boolean isCheckedException(Throwable ex)
// Determine whether the given object is an array
public static boolean isArray(@Nullable Object obj)

FileUtils

org.apache.commons.io.FileUtils
文件復制,文件轉(zhuǎn)換等(同org.springframework.util.FileCopyUtils

public static void copyFile(final File srcFile, final File destFile)
public static void copyDirectoryToDirectory(final File srcDir, final File destDir)
public static void touch(final File file) throws IOException
public static void deleteDirectory(final File directory)
public static String readFileToString(final File file, final Charset encoding) throws IOException
public static void writeStringToFile(final File file, final String data, final Charset encoding,
                                         final boolean append) throws IOException
public static void moveFile(final File srcFile, final File destFile) throws IOException
// Returns the size of the specified file or directory.
public static long sizeOf(final File file)
// Deletes a file. If file is a directory, delete it and all sub-directories.
public static void forceDelete(final File file) throws IOException
// Determines whether the specified file is a Symbolic Link rather than an actual file.
public static boolean isSymlink(final File file) throws IOException

FilenameUtils

org.apache.commons.io.FilenameUtils
獲取文件名歌殃、擴展名等

// 獲取文件名乔妈,如a/b/c.txt --> c.txt
public static String getName(final String filename)
// 獲取文件名的擴展名,如foo.txt      --> "txt"
//       a/b/c.jpg    --> "jpg"
//       a/b.txt/c    --> ""
//       a/b/c        --> ""
public static String getExtension(final String filename)
// 去除擴展名
public static String removeExtension(final String filename)

IOUtils

org.apache.commons.io.IOUtils
通用IO流操作實用工具氓皱。

public static String toString(final InputStream input, final Charset encoding)
public static void write(final String data, final OutputStream output, final Charset encoding) throws IOException

DigestUtils

org.springframework.util.DigestUtils
計算摘要的各種方法路召。推薦使用Apache Commons Codec用于更全面的摘要實用程序套件勃刨。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市股淡,隨后出現(xiàn)的幾起案子身隐,更是在濱河造成了極大的恐慌,老刑警劉巖唯灵,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件贾铝,死亡現(xiàn)場離奇詭異,居然都是意外死亡埠帕,警方通過查閱死者的電腦和手機垢揩,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來敛瓷,“玉大人叁巨,你說我怎么就攤上這事∧抛眩” “怎么了锋勺?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長狡蝶。 經(jīng)常有香客問我庶橱,道長,這世上最難降的妖魔是什么牢酵? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任悬包,我火速辦了婚禮,結(jié)果婚禮上馍乙,老公的妹妹穿的比我還像新娘布近。我一直安慰自己,他們只是感情好丝格,可當我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布撑瞧。 她就那樣靜靜地躺著,像睡著了一般显蝌。 火紅的嫁衣襯著肌膚如雪预伺。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天曼尊,我揣著相機與錄音酬诀,去河邊找鬼。 笑死骆撇,一個胖子當著我的面吹牛瞒御,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播神郊,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼肴裙,長吁一口氣:“原來是場噩夢啊……” “哼趾唱!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起蜻懦,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤甜癞,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后宛乃,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體悠咱,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年烤惊,在試婚紗的時候發(fā)現(xiàn)自己被綠了乔煞。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡柒室,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出逗宜,到底是詐尸還是另有隱情雄右,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布纺讲,位于F島的核電站擂仍,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏熬甚。R本人自食惡果不足惜逢渔,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望乡括。 院中可真熱鬧肃廓,春花似錦、人聲如沸诲泌。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽敷扫。三九已至哀蘑,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間葵第,已是汗流浹背绘迁。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留卒密,地道東北人缀台。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像栅受,于是被迫代替她去往敵國和親将硝。 傳聞我的和親對象是個殘疾皇子恭朗,可洞房花燭夜當晚...
    茶點故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容