File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4141 * Because CSV appears in many different dialects, the parser supports many formats by allowing the
4242 * specification of a {@link CSVFormat}.
4343 *
44+ * There are several static factory methods that can be used to create instances for various types of resources:
45+ * <p>
46+ * <ul>
47+ * <li>{@link #parse(java.io.File, CSVFormat)}</li>
48+ * <li>{@link #parse(String, CSVFormat)}</li>
49+ * <li>{@link #parse(java.net.URL, java.nio.charset.Charset, CSVFormat)}</li>
50+ * </ul>
51+ * </p>
52+ * <p>
53+ * Alternatively parsers can also be created by passing a {@link Reader} directly to the sole constructor.
54+ * </p>
55+ *
4456 * <p>
4557 * To parse a CSV input with tabs as separators, '"' (double-quote) as an optional value encapsulator, and comments
4658 * starting with '#', you write:
You can’t perform that action at this time.
0 commit comments