- 1、本文档共47页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Java面向对象编程3.1
Topics Covered Today 3.1?Input and Output Programming 3.1.0 Java I/O Stream 3.1.1?File I/O 3.1.2?Using File I/O in the Library System What is an I/O Stream? An I/O Stream represents an input source or an output destination A stream can represent many different kinds of sources and destinations disk files, devices, other programs, a network socket, and memory arrays Streams support many different kinds of data simple bytes, primitive data types, and objects I/O Streams No matter how they work internally, all streams present the same simple model to programs that use them A stream is a sequence of data Input Stream A program uses an input stream to read data from a source (a file, memory, a socket), and reads the information sequentially, one item at a time. Output Stream A program uses an output stream to write data to a destination, and writing the information out sequentially, one item at time. Types of Streams General Stream Types Character and Byte Streams Character vs. Byte Input and Output Streams Based on source or destination Node and Filter Streams Whether the data on a stream is manipulated or transformed or not Abstract Classes InputStream OutputStream Reader Writer InputStream Abstract Class Read data from InputStream: int read( ); Reads the next byte of data from the input stream int read( byte b[ ] ); Reads some number of bytes from the input stream and stores them into the buffer array b. int read( byte b[ ], int off, int len ); Reads up to len bytes of data from the input stream into an array of bytes. int available( ); ?Returns the number of bytes that can be read Close Stream: close( ); Closes this input stream and releases any system resources associated with the stream. OutputStream Abstract Class Write data: void write( int b ); Writes the specified byte to this output stream. void write( byte b[ ] ); Writes b.length bytes from the specified byte array to this output stream void write( byte b[ ], int off, int len ); Writes len bytes from th
您可能关注的文档
最近下载
- 2.1.2 有理数的减法(第1课时 有理数的减法法则)(教学设计) 七年级数学上册 (人教版2024).pdf
- 牛羊规模养殖场疫病防治规范.pdf VIP
- 2025年市委办公室庆祝中国共产党成立104周年大会作风建设七一党课讲稿:坚守初心担使命,奋楫笃行启新程.docx VIP
- 22届 昆明市高一下期末 市统测 物理试卷+答案.pdf VIP
- 2025年《学前教育法》全文课件.ppt VIP
- 五年级下册口算题1000道及答案.pdf VIP
- 电子警察课件.ppt VIP
- 北京律师实习律师执业面试参考资料3.0版.pdf VIP
- 中国近现代史纲要课后答案(完整版).pdf VIP
- 员工手册-员工守则.docx VIP
文档评论(0)