Converts all of the characters in this String to lower case using the rules of the given Locale. Case mapping is based on the Unicode Standard version specified by the Character class. Since case mappings are not always 1:1 char mappings, the resulting String may be a different length than the original String.
这是官方给的解释,用人话说就是按照给定的参数规则转换成小写。参数类型是Locale类型,它有以下值
static Locale CANADA
Useful constant for country.
static Locale CANADA_FRENCH
Useful constant for country.
static Locale CHINA
Useful constant for country.
static Locale GERMANY
Useful constant for country.
static Locale FRANCE
Useful constant for country.
static Locale ITALY
Useful constant for country.
static Locale JAPAN
Useful constant for country.
static Locale KOREA
Useful constant for country.
static Locale PRC
Useful constant for country.
static Locale TAIWAN
Useful constant for country.
static Locale UK
Useful constant for country.
static Locale US
Useful constant for country.static Locale CHINESE
Useful constant for language.
static Locale ENGLISH
Useful constant for language.
static Locale FRENCH
Useful constant for language.
static Locale GERMAN
Useful constant for language.
static Locale ITALIAN
Useful constant for language.
static Locale JAPANESE
Useful constant for language.
static Locale KOREAN
Useful constant for language.
static char PRIVATE_USE_EXTENSION
The key for the private use extension ('x').
static Locale ROOT
Useful constant for the root locale.
static Locale SIMPLIFIED_CHINESE
Useful constant for language.
static Locale TRADITIONAL_CHINESE
Useful constant for language.
static char UNICODE_LOCALE_EXTENSION
The key for Unicode locale extension ('u').