zoukankan      html  css  js  c++  java
  • java常用工具类

    1. org.apache.commons.io.IOUtils
    closeQuietly()  
    toString()  
    copy()  
    toByteArray()  
    write()  
    toInputStream()  
    readLines()  
    copyLarge()  
    lineIterator()  
    readFully()  
    1. org.apache.commons.io.FileUtils
    deleteDirectory()  
    readFileToString()  
    deleteQuietly()  
    copyFile()  
    writeStringToFile()  
    forceMkdir()  
    write()  
    listFiles()  
    copyDirectory()  
    forceDelete()  
    1. org.apache.commons.lang.StringUtils
    isBlank()  
    isNotBlank()  
    isEmpty()  
    isNotEmpty()  
    equals()  
    join()  
    split()  
    EMPTY  
    trimToNull()  
    replace()  
    1. org.apache.http.util.EntityUtils
    toString()  
    consume()  
    toByteArray()  
    consumeQuietly()  
    getContentCharSet()  
    1. org.apache.commons.lang3.StringUtils
    isBlank()  
    isNotBlank()  
    isEmpty()  
    isNotEmpty()  
    join()  
    equals()  
    split()  
    EMPTY  
    replace()  
    capitalize()  
    1. org.apache.commons.io.FilenameUtils
    getExtension()  
    getBaseName()  
    getName()  
    concat()  
    removeExtension()  
    normalize()  
    wildcardMatch()  
    separatorsToUnix()  
    getFullPath()  
    isExtension()  
    1. org.springframework.util.StringUtils
    hasText()  
    hasLength()  
    isEmpty()  
    commaDelimitedListToStringArray()  
    collectionToDelimitedString()  
    replace()  
    delimitedListToStringArray()  
    uncapitalize()  
    collectionToCommaDelimitedString()  
    tokenizeToStringArray()  
    1. org.apache.commons.lang.ArrayUtils
    contains()  
    addAll()  
    clone()  
    isEmpty()  
    add()  
    EMPTY_BYTE_ARRAY  
    subarray()  
    indexOf()  
    isEquals()  
    toObject()  
    1. org.apache.commons.lang.StringEscapeUtils
    escapeHtml()  
    unescapeHtml()  
    escapeXml()  
    escapeSql()  
    unescapeJava()  
    escapeJava()  
    escapeJavaScript()  
    unescapeXml()  
    unescapeJavaScript()  
    1. org.apache.http.client.utils.URLEncodedUtils
    format()  
    parse()  
    1. org.apache.commons.codec.digest.DigestUtils
    md5Hex()  
    shaHex()  
    sha256Hex()  
    sha1Hex()  
    sha()  
    md5()  
    sha512Hex()  
    sha1()  
    1. org.apache.commons.collections.CollectionUtils
    isEmpty()  
    isNotEmpty()  
    select()  
    transform()  
    filter()  
    find()  
    collect()  
    forAllDo()  
    addAll()  
    isEqualCollection()  
    1. org.apache.commons.lang3.ArrayUtils
    contains()  
    isEmpty()  
    isNotEmpty()  
    add()  
    clone()  
    addAll()  
    subarray()  
    indexOf()  
    EMPTY_OBJECT_ARRAY  
    EMPTY_STRING_ARRAY  
    1. org.apache.commons.beanutils.PropertyUtils
    getProperty()  
    setProperty()  
    getPropertyDescriptors()  
    isReadable()  
    copyProperties()  
    getPropertyDescriptor()  
    getSimpleProperty()  
    isWriteable()  
    setSimpleProperty()  
    getPropertyType()  
    1. org.apache.commons.lang3.StringEscapeUtils
    unescapeHtml4()  
    escapeHtml4()  
    escapeXml()  
    unescapeXml()  
    escapeJava()  
    escapeEcmaScript()  
    unescapeJava()  
    escapeJson()  
    escapeXml10()  
    1. org.apache.commons.beanutils.BeanUtils
    copyProperties()  
    getProperty()  
    setProperty()  
    describe()  
    populate()  
    copyProperty()  
    cloneBean()  
  • 相关阅读:
    结构体初始化所遇到的问题
    字符串赋值注意事项
    C语言可变参数 "..."
    typedef 定义指针数组和数组指针及其使用。
    指针函数、指针数组、函数指针、数组指针、函数指针数组。
    前端回血day24 flex子项伤的CSS属性
    Fiddler使用
    一句话“截流”和“防抖”
    django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.
    Linux
  • 原文地址:https://www.cnblogs.com/fengyun2050/p/14063143.html
Copyright © 2011-2022 走看看