Java Utililty Methods Reader Copy

List of utility methods to do Reader Copy

Description

The list of methods to do Reader Copy are organized into topic(s).

Method

longcopyLarge(final Reader input, final Writer output)
Copy chars from a large (over 2GB) Reader to a Writer.
char[] buffer = new char[DEFAULT_BUFFER_SIZE];
long count = 0;
int n = 0;
while (-1 != (n = input.read(buffer))) {
    output.write(buffer, 0, n);
    count += n;
return count;
...
longcopyLarge(Reader input, Writer output)
Copy chars from a Reader to a Writer.
char[] buffer = new char[DEFAULT_BUFFER_SIZE];
long count = 0;
int n = 0;
while (-1 != (n = input.read(buffer))) {
    output.write(buffer, 0, n);
    count += n;
return count;
...
longcopyLarge(Reader input, Writer output)
Copy chars from a large (over 2GB) Reader to a Writer.
char[] buffer = new char[DEFAULT_BUFFER_SIZE];
long count = 0;
int n = 0;
while (-1 != (n = input.read(buffer))) {
    output.write(buffer, 0, n);
    count += n;
return count;
...
longcopyLarge(Reader input, Writer output)
Copy chars from a large (over 2GB) Reader to a Writer.
char[] buffer = new char[DEFAULT_BUFFER_SIZE];
long count = 0;
int n = 0;
while (-1 != (n = input.read(buffer))) {
    output.write(buffer, 0, n);
    count += n;
return count;
...
longcopyLarge(Reader input, Writer output)
copy Large
char[] buffer = new char[DEFAULT_BUFFER_SIZE];
long count = 0;
int n = 0;
while (-1 != (n = input.read(buffer))) {
    output.write(buffer, 0, n);
    count += n;
return count;
...
longcopyLarge(Reader input, Writer output)
copy Large
char[] buffer = new char[1024 * 4];
long count = 0;
int n = 0;
while (-1 != (n = input.read(buffer))) {
    output.write(buffer, 0, n);
    count += n;
return count;
...
longcopyLarge(Reader input, Writer output)
copy Large
char[] buffer = new char[4096];
long count = 0L;
int n1;
for (; -1 != (n1 = input.read(buffer)); count += (long) n1) {
    output.write(buffer, 0, n1);
return count;
longcopyLarge(Reader input, Writer output)
copy Large
char[] buffer = new char[DEFAULT_BUFFER_SIZE];
long count = 0;
int n;
while (-1 != (n = input.read(buffer))) {
    output.write(buffer, 0, n);
    count += n;
return count;
...
longcopyLarge(Reader input, Writer output)
Copy chars from a large (over 2GB) Reader to a Writer.
char[] buffer = new char[DEFAULT_BUFFER_SIZE];
long count = 0;
int n = 0;
while (-1 != (n = input.read(buffer))) {
    output.write(buffer, 0, n);
    count += n;
return count;
...
longcopyLarge(Reader input, Writer output)
copy Large
char[] buffer = new char[DEFAULT_BUFFER_SIZE];
long count = 0;
int n = 0;
while (-1 != (n = input.read(buffer))) {
    output.write(buffer, 0, n);
    count += n;
return count;
...