D:\TDDOWNLOAD\hbase-0.90.5\hbase-0.90.5\lib\commons-lang-2.5.jar

StringUtils (Commons Lang 2.5 API)

join

public static String join(Object[] array)

Joins the elements of the provided array into a single String
containing the provided list of elements.

No separator is added to the joined String.
Null objects or empty strings within the array are represented by
empty strings.

 StringUtils.join(null)            = null
 StringUtils.join([])              = ""
 StringUtils.join([null])          = ""
 StringUtils.join(["a", "b", "c"]) = "abc"
 StringUtils.join([null, "", "a"]) = "a"
 

相关文章:

  • 2021-12-23
  • 2021-09-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-10
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-18
  • 2021-12-27
  • 2022-02-12
  • 2021-10-01
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案