Java Array to String ArrayToString(Object[] row, StringBuilder sbf)

Here you can find the source of ArrayToString(Object[] row, StringBuilder sbf)

Description

Array To String

License

Open Source License

Parameter

Parameter Description
row a parameter
sbf a parameter

Declaration

public static void ArrayToString(Object[] row, StringBuilder sbf) 

Method Source Code

//package com.java2s;
/*//w  ww .j  ava2 s  .  c  o  m
 * Copyright (c) 2016 simplity.org
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

public class Main {
    /**
     * @param row
     * @param sbf
     */
    public static void ArrayToString(Object[] row, StringBuilder sbf) {
        for (Object obj : row) {
            sbf.append(obj).append(',');
        }
        sbf.setCharAt(sbf.length() - 1, '\n');
    }
}

Related

  1. arrayToString(Object[] objects)
  2. arrayToString(Object[] objs)
  3. arrayToString(Object[] objs)
  4. arrayToString(Object[] objs, boolean stripPackageNames)
  5. arrayToString(Object[] objs, String separator)
  6. arrayToString(Object[] subject)
  7. arrayToString(String array[], String separator)
  8. arrayToString(String format, double[] array)
  9. arrayToString(String in[])