数组转换成字符串输出

public static void info(String[] param){
        StringBuffer sb=new StringBuffer();
        for(int i=0;i<param.length;i++){
            sb.append(param[i]).append(",");            
        }
        System.out.println(sb);
    }

posted @ 2013-06-19 13:33  爱笑的狐狸  阅读(440)  评论(0编辑  收藏  举报