java拆分字符串输入一个字符串 如: 刘德华 怎么把这个名字拆分? 求各位大哥大姐们赐教[解决办法]怎么样的拆分[解决办法]
String [] str = "刘德华".split("");for(String s : str) {System.out.println(s);}