List of utility methods to do String Split by Quote
ArrayList<String> list = new ArrayList(); if (s == null) { return list; while (true) { s = s.trim(); int qidx1 = s.indexOf("\""); int qidx2 = s.indexOf("\"", qidx1 + 1); ...