Add reference to RFC 4180

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1522810 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-09-13 08:23:26 +00:00
parent 0a6f94b2a3
commit 67155b3d52
1 changed files with 5 additions and 4 deletions

View File

@ -18,10 +18,11 @@
/** /**
* Apache Commons CSV Format Support. * Apache Commons CSV Format Support.
* *
* <p>CSV (or its dialects) are widely used as interfaces to legacy systems or * <p>CSV are widely used as interfaces to legacy systems or manual data-imports.
* manual data-imports. CSV stands for "Comma Separated Values" (or sometimes * CSV stands for "Comma Separated Values" (or sometimes "Character Separated
* "Character Separated Values") but this simple abbreviation leads to more * Values"). The CSV data format is defined in
* confusion than definitions.</p> * <a href="http://tools.ietf.org/html/rfc4180" target="_blank">RFC 4180</a>
* but many dialects exist.</p>
* *
* <p>Common to all file dialects is its basic structure: The CSV data-format * <p>Common to all file dialects is its basic structure: The CSV data-format
* is record oriented, whereas each record starts on a new textual line. A * is record oriented, whereas each record starts on a new textual line. A