![Mastering Java for Data Science](https://wfqqreader-1252317822.image.myqcloud.com/cover/267/36701267/b_36701267.jpg)
上QQ阅读APP看书,第一时间看更新
Input/Output
Data scientists often work with files and other data sources. I/O is needed for reading from the data sources and writing the results back. The Java I/O API provides two main types of abstraction for this:
- InputStream, OutputStream for binary data
- Reader, Writer for text data
Typical data science applications deal with text rather than raw binary data--the data is often stored in TXT, CSV, JSON, and other similar text formats. This is why we will concentrate on the second part.