OutputStream : Introduction « File « Java Tutorial

Home
Java Tutorial
1.Language
2.Data Type
3.Operators
4.Statement Control
5.Class Definition
6.Development
7.Reflection
8.Regular Expressions
9.Collections
10.Thread
11.File
12.Generics
13.I18N
14.Swing
15.Swing Event
16.2D Graphics
17.SWT
18.SWT 2D Graphics
19.Network
20.Database
21.Hibernate
22.JPA
23.JSP
24.JSTL
25.Servlet
26.Web Services SOA
27.EJB3
28.Spring
29.PDF
30.Email
31.J2ME
32.J2EE Application
33.XML
34.Design Pattern
35.Log
36.Security
37.Apache Common
38.Ant
39.JUnit
Java Tutorial » File » Introduction 
11.1.4.OutputStream

The OutputStream class defines three write method overloads, which are mirrors of the read method overloads in InputStream:

public void write (int b)
public void write (byte[] data)
public void write (byte[] data, int offset, int length)
  1. The first overload writes the lowest 8 bits of the integer b to this OutputStream.
  2. The second writes the content of a byte array to this OutputStream.
  3. The third overload writes length bytes of the data starting at offset offset.
  1. close() method closes the OutputStream.
  2. flush() method forces any buffered content to be written out to the sink.
11.1.Introduction
11.1.1.Input Output
11.1.2.Reading Binary Data
11.1.3.Writing Binary Data
11.1.4.OutputStream
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.