Java Array to String toString(int[] v, char delim)

Here you can find the source of toString(int[] v, char delim)

Description

Return a string representation of an integer array.

License

Open Source License

Parameter

Parameter Description
delim the character to be used as delimiter between the array's elements

Declaration

static public String toString(int[] v, char delim) 

Method Source Code


//package com.java2s;
/*/*from  ww  w  .ja  v  a 2 s  . co m*/
*   EuroCarbDB, a framework for carbohydrate bioinformatics
*
*   Copyright (c) 2006-2009, Eurocarb project, or third-party contributors as
*   indicated by the @author tags or express copyright attribution
*   statements applied by the authors.  
*
*   This copyrighted material is made available to anyone wishing to use, modify,
*   copy, or redistribute it subject to the terms and conditions of the GNU
*   Lesser General Public License, as published by the Free Software Foundation.
*   A copy of this license accompanies this distribution in the file LICENSE.txt.
*
*   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 Lesser General Public License
*   for more details.
*
*   Last commit: $Rev: 1210 $ by $Author: glycoslave $ on $Date:: 2009-06-12 #$  
*/

import java.util.*;

public class Main {
    /**
       Return a string representation of an integer array. 
       @param delim the character to be used as delimiter between the
       array's elements
     */
    static public String toString(int[] v, char delim) {
        if (v == null)
            return "";

        StringBuilder strbuf = new StringBuilder();
        for (int i = 0; i < v.length; i++) {
            if (i > 0)
                strbuf.append(delim);
            strbuf.append(v[i]);
        }
        return strbuf.toString();
    }

    /**
       Return a string representation of an object array. 
       @param delim the character to be used as delimiter between the
       array's elements
     */
    static public String toString(Object[] v, char delim) {
        if (v == null)
            return "";

        StringBuilder strbuf = new StringBuilder();
        for (int i = 0; i < v.length; i++) {
            if (i > 0)
                strbuf.append(delim);
            strbuf.append(v[i].toString());
        }
        return strbuf.toString();
    }

    /**
       Return a string representation of a list. 
       @param delim the character to be used as delimiter between the
       list's elements
     */
    static public String toString(Collection<? extends Object> v, char delim) {
        if (v == null)
            return "";

        StringBuilder strbuf = new StringBuilder();
        for (Object o : v) {
            if (strbuf.length() > 0)
                strbuf.append(delim);
            strbuf.append(o.toString());
        }
        return strbuf.toString();
    }
}

Related

  1. toString(final byte[] buffer, final int offset, final int length)
  2. toString(final Object[] array)
  3. toString(int X[][])
  4. toString(int[] a, int maxValues)
  5. toString(int[] codes)
  6. toString(long[] dom)
  7. toString(Map arg)
  8. toString(Object array)
  9. toString(Object array)