Java CSV String Convert csvToArray(String dirs)

Here you can find the source of csvToArray(String dirs)

Description

csv To Array

License

Open Source License

Declaration

public static String[] csvToArray(String dirs) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String[] csvToArray(String dirs) {
        return dirs != null ? dirs.split(";") : new String[0];
    }/*from   w ww .java 2 s .  c  om*/
}

Related

  1. csvEncodeString(String value)
  2. csvQuote(String value)
  3. csvString(Object[] objects)
  4. csvstring(Object[] str)
  5. csvTitleToTag(String title, int index)
  6. csvToArray(String line)
  7. csvToValuePerLine(String csv)