String[] array = new String[] { "hello", "world", "qiniu", "cloud","storage" };
那么得到的结果是:
hello,world,qiniu,cloud,storage
String[] array = new String[] { "hello", "world", "qiniu", "cloud","storage" };
那么得到的结果是:
"hello","world","qiniu","cloud","storage"
-
and _
are used in place of +
and
/
.