All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jn.langx.text.csv.CsvIOs Maven / Gradle / Ivy

Go to download

Java lang extensions for java6+, a supplement to , replacement of a Guava, commons-lang. Core utilities, Collection utilities, IO utilities, Cache, Configuration library ...

There is a newer version: 4.8.2
Show newest version
package com.jn.langx.text.csv;

import java.io.IOException;
import java.io.Reader;
import java.io.Writer;
import java.nio.CharBuffer;

/**
 * Copied from Apache Commons IO.
 */
class CsvIOs {

    /**
     * 

* Copied from Apache Commons IO. *

* The default buffer size ({@value}). */ static final int DEFAULT_BUFFER_SIZE = 1024 * 4; /** *

* Copied from Apache Commons IO. *

* Represents the end-of-file (or stream). * * @since 2.5 (made public) */ private static final int EOF = -1; /** * Copies chars from a large (over 2GB) Reader to an Appendable. *

* This method buffers the input internally, so there is no need to use a * BufferedReader. *

* The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}. * * @param input the Reader to read from * @param output the Appendable to append to * @return the number of characters copied * @throws NullPointerException if the input or output is null * @throws IOException if an I/O error occurs * @since 2.7 */ static long copy(final Reader input, final Appendable output) throws IOException { return copy(input, output, CharBuffer.allocate(DEFAULT_BUFFER_SIZE)); } /** * Copies chars from a large (over 2GB) Reader to an Appendable. *

* This method uses the provided buffer, so there is no need to use a * BufferedReader. *

* * @param input the Reader to read from * @param output the Appendable to write to * @param buffer the buffer to be used for the copy * @return the number of characters copied * @throws NullPointerException if the input or output is null * @throws IOException if an I/O error occurs * @since 2.7 */ static long copy(final Reader input, final Appendable output, final CharBuffer buffer) throws IOException { long count = 0; int n; while (EOF != (n = input.read(buffer))) { buffer.flip(); output.append(buffer, 0, n); count += n; } return count; } /** *

* Copied from Apache Commons IO. *

* Copies chars from a large (over 2GB) Reader to a Writer. *

* This method buffers the input internally, so there is no need to use a * BufferedReader. *

* The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}. * * @param input the Reader to read from * @param output the Writer to write to * @return the number of characters copied * @throws NullPointerException if the input or output is null * @throws IOException if an I/O error occurs * @since 1.3 */ static long copyLarge(final Reader input, final Writer output) throws IOException { return copyLarge(input, output, new char[DEFAULT_BUFFER_SIZE]); } /** *

* Copied from Apache Commons IO. *

* Copies chars from a large (over 2GB) Reader to a Writer. *

* This method uses the provided buffer, so there is no need to use a * BufferedReader. *

* * @param input the Reader to read from * @param output the Writer to write to * @param buffer the buffer to be used for the copy * @return the number of characters copied * @throws NullPointerException if the input or output is null * @throws IOException if an I/O error occurs * @since 2.2 */ static long copyLarge(final Reader input, final Writer output, final char[] buffer) throws IOException { long count = 0; int n; while (EOF != (n = input.read(buffer))) { output.write(buffer, 0, n); count += n; } return count; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy