Java Array to String intArrayToString(Object array)

Here you can find the source of intArrayToString(Object array)

Description

Convert multidimensional array to readable String

License

Open Source License

Parameter

Parameter Description
array a parameter

Return

String representation of array

Declaration

public static String intArrayToString(Object array) 

Method Source Code

//package com.java2s;
/* ---------------------------------------------------------------------
 * Numenta Platform for Intelligent Computing (NuPIC)
 * Copyright (C) 2014, Numenta, Inc.  Unless you have an agreement
 * with Numenta, Inc., for a separate license for this software code, the
 * following terms and conditions apply:
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero Public License version 3 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Affero Public License for more details.
 *
 * You should have received a copy of the GNU Affero Public License
 * along with this program.  If not, see http://www.gnu.org/licenses.
 *
 * http://numenta.org/licenses/// w w w .j  av  a 2 s . co  m
 * ---------------------------------------------------------------------
 */

import java.util.Arrays;

public class Main {
    /**
     * Convert multidimensional array to readable String
     * @param array
     * @return String representation of array
     */
    public static String intArrayToString(Object array) {
        StringBuilder result = new StringBuilder();
        if (array instanceof Object[]) {
            result.append(Arrays.deepToString((Object[]) array));
        } else {
            //One dimension
            result.append(Arrays.toString((int[]) array));
        }
        return result.toString();
    }
}

Related

  1. deepToString(Object[] a)
  2. encodedSeptetsToString(byte[] encodedSeptets)
  3. getArrayAsString(double[] vals)
  4. intArrayToString(int[] array, String delim)
  5. intArrayToString(int[] itemsPerPagines)
  6. intToString(int[] vectorIndex)
  7. permChangeToString(int[] permutation)
  8. stringify(int arr[])
  9. stringify(int[] raw)