Java CSV from getCsvStringsFromList(final List stringsToDelimit)

Here you can find the source of getCsvStringsFromList(final List stringsToDelimit)

Description

Convert a List of String objects to a CSV list of strings

License

Apache License

Parameter

Parameter Description
stringsToDelimit The <code>List</code> of strings to delimit

Return

The comma delimited list of values

Declaration

public static String getCsvStringsFromList(final List<String> stringsToDelimit) 

Method Source Code

//package com.java2s;
/**/*  w  w  w .ja v  a  2  s. c  o  m*/
 * Copyright (C) [2013] [The FURTHeR Project]
 *
 * 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.
 */

import java.util.List;

public class Main {
    /**
     * Convert a <code>List</code> of String objects to a CSV list of strings
     * 
     * @param stringsToDelimit
     *            The <code>List</code> of strings to delimit
     * 
     * @return The comma delimited list of values
     */
    public static String getCsvStringsFromList(final List<String> stringsToDelimit) {
        final StringBuilder sbCSVStrings = newStringBuilder();
        if (stringsToDelimit != null) {
            for (int count = 0; count < stringsToDelimit.size(); count++) {
                sbCSVStrings.append(stringsToDelimit.get(count));
                if (count + 1 < stringsToDelimit.size()) {
                    sbCSVStrings.append(",");
                }
            }
        }
        return sbCSVStrings.toString();
    }

    /**
     * Return a new instance of an empty string buffer.
     * 
     * @return a new empty string buffer instance
     */
    public static StringBuilder newStringBuilder() {
        return new StringBuilder();
    }
}

Related

  1. getCSVFromList(List myList)
  2. getCSVFromList(List myList)
  3. getCSVList(String csvList)
  4. getCSVList(String csvList)
  5. getCSVString(List items)
  6. getepcList(String csv)
  7. getFixedArrayListSizeFromCSV(String csvString, int returnArrayListSize)
  8. getListFromCSV(String myCsv)
  9. getListFromCSV(String myCsv)