oracle.jdevimpl.audit.util
Class Streams
java.lang.Object
  
oracle.jdevimpl.audit.util.Streams
public class Streams
- extends java.lang.Object
 
Stream, Reader, and Writer utilities.
 
| 
Method Summary | 
static void | 
copy(java.io.InputStream is,
     byte[] buffer)
 
            | 
static void | 
copy(java.io.InputStream is,
     java.io.OutputStream os)
 
            | 
static void | 
copy(java.io.InputStream is,
     java.io.OutputStream os,
     byte[] buffer)
 
            | 
static void | 
copy(java.io.InputStream is,
     java.io.OutputStream os,
     long size,
     byte[] buffer)
 
            | 
static void | 
copy(java.io.Reader is,
     char[] buffer)
 
            | 
static void | 
copy(java.io.Reader is,
     java.io.Writer os)
 
            | 
static void | 
copy(java.io.Reader is,
     java.io.Writer os,
     char[] buffer)
 
            | 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
Streams
public Streams()
copy
public static void copy(java.io.InputStream is,
                        java.io.OutputStream os)
                 throws java.io.IOException
- Throws:
 java.io.IOException
 
copy
public static void copy(java.io.InputStream is,
                        java.io.OutputStream os,
                        byte[] buffer)
                 throws java.io.IOException
- Throws:
 java.io.IOException
 
copy
public static void copy(java.io.InputStream is,
                        java.io.OutputStream os,
                        long size,
                        byte[] buffer)
                 throws java.io.IOException
- Throws:
 java.io.IOException
 
copy
public static void copy(java.io.InputStream is,
                        byte[] buffer)
                 throws java.io.IOException
- Throws:
 java.io.IOException
 
copy
public static void copy(java.io.Reader is,
                        java.io.Writer os)
                 throws java.io.IOException
- Throws:
 java.io.IOException
 
copy
public static void copy(java.io.Reader is,
                        java.io.Writer os,
                        char[] buffer)
                 throws java.io.IOException
- Throws:
 java.io.IOException
 
copy
public static void copy(java.io.Reader is,
                        char[] buffer)
                 throws java.io.IOException
- Throws:
 java.io.IOException
 
Copyright © 1997, 2009, Oracle. All rights reserved.