Java Array to String arrayToString(Object[] array)

Here you can find the source of arrayToString(Object[] array)

Description

Convert an array object to string, the component of the array should have a public method toString()

License

Apache License

Parameter

Parameter Description

Return

String the array converted into a string

Declaration

public static String arrayToString(Object[] array) 

Method Source Code

//package com.java2s;
/*/*from w ww.ja  va  2 s  .c o m*/
 * Copyright 2005 i-Konect LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

public class Main {
    /**
     * Convert an array object to string, the component of the array should have
     * a public method toString()
     * 
     * @param Object[]
     *            an input array of objects
     * @return String the array converted into a string
     */
    public static String arrayToString(Object[] array) {
        if (null == array)
            return null;

        StringBuffer s = new StringBuffer();
        for (int i = 0; i < array.length; i++)
            s.append(array[i].toString());
        return s.toString();
    }
}

Related

  1. arrayToString(Object[] arr)
  2. arrayToString(Object[] arr, String split)
  3. arrayToString(Object[] array)
  4. arrayToString(Object[] array)
  5. arrayToString(Object[] array)
  6. arrayToString(Object[] array)
  7. arrayToString(Object[] array)
  8. arrayToString(Object[] array)
  9. arrayToString(Object[] array)