Java:toLocaleLowerCase()和toLowerCase()之间的区别?

Difference between toLocaleLowerCase() and toLowerCase()?

本问题已经有最佳答案,请猛点这里访问。

这两者有什么区别?

tolocallowercase()的描述提到了Converts a string to lowercase letters, according to the host's locale

主机的区域设置是什么?


根据W3学校定义和使用

toLocalLowerCase()方法根据主机的当前区域设置,将字符串转换为小写字母。

区域设置基于浏览器的语言设置。

通常,此方法返回与toLowercase()方法相同的结果。但是,对于某些区域设置,当语言与常规的Unicode大小写映射发生冲突时(如土耳其语),结果可能会有所不同。