org.apache.commons.net.io.Util.copyReader()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(6.9k)|赞(0)|评价(0)|浏览(208)

本文整理了Java中org.apache.commons.net.io.Util.copyReader()方法的一些代码示例,展示了Util.copyReader()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.copyReader()方法的具体详情如下:
包路径:org.apache.commons.net.io.Util
类名称:Util
方法名:copyReader

Util.copyReader介绍

[英]Same as copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE);
[中]与copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE);相同

代码示例

代码示例来源:origin: commons-net/commons-net

  1. /***
  2. * Same as <code> copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE); </code>
  3. * @param source where to copy from
  4. * @param dest where to copy to
  5. * @return number of bytes copied
  6. * @throws CopyStreamException on error
  7. ***/
  8. public static final long copyReader(Reader source, Writer dest)
  9. throws CopyStreamException
  10. {
  11. return copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE);
  12. }

代码示例来源:origin: commons-net/commons-net

  1. /***
  2. * Copies the contents of a Reader to a Writer using a
  3. * copy buffer of a given size. The contents of the Reader are
  4. * read until its end is reached, but neither the source nor the
  5. * destination are closed. You must do this yourself outside of the
  6. * method call. The number of characters read/written is returned.
  7. *
  8. * @param source The source Reader.
  9. * @param dest The destination writer.
  10. * @param bufferSize The number of characters to buffer during the copy.
  11. * A zero or negative value means to use {@link #DEFAULT_COPY_BUFFER_SIZE}.
  12. * @return The number of characters read/written in the copy operation.
  13. * @throws CopyStreamException If an error occurs while reading from the
  14. * source or writing to the destination. The CopyStreamException
  15. * will contain the number of bytes confirmed to have been
  16. * transferred before an
  17. * IOException occurred, and it will also contain the IOException
  18. * that caused the error. These values can be retrieved with
  19. * the CopyStreamException getTotalBytesTransferred() and
  20. * getIOException() methods.
  21. ***/
  22. public static final long copyReader(Reader source, Writer dest,
  23. int bufferSize)
  24. throws CopyStreamException
  25. {
  26. return copyReader(source, dest, bufferSize,
  27. CopyStreamEvent.UNKNOWN_STREAM_SIZE, null);
  28. }

代码示例来源:origin: commons-net/commons-net

  1. /***
  2. * List the command help from the server.
  3. * <p>
  4. * @return The sever help information.
  5. * @throws NNTPConnectionClosedException
  6. * If the NNTP server prematurely closes the connection as a result
  7. * of the client being idle or some other reason causing the server
  8. * to send NNTP reply code 400. This exception may be caught either
  9. * as an IOException or independently as itself.
  10. * @throws IOException If an I/O error occurs while either sending a
  11. * command to the server or receiving a reply from the server.
  12. ***/
  13. public String listHelp() throws IOException
  14. {
  15. if (!NNTPReply.isInformational(help())) {
  16. return null;
  17. }
  18. StringWriter help = new StringWriter();
  19. BufferedReader reader = new DotTerminatedMessageReader(_reader_);
  20. Util.copyReader(reader, help);
  21. reader.close();
  22. help.close();
  23. return help.toString();
  24. }

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.net

  1. /***
  2. * Same as <code> copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE); </code>
  3. ***/
  4. public static final long copyReader(Reader source, Writer dest)
  5. throws CopyStreamException
  6. {
  7. return copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE);
  8. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-net

  1. /***
  2. * Same as <code> copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE); </code>
  3. ***/
  4. public static final long copyReader(Reader source, Writer dest)
  5. throws CopyStreamException
  6. {
  7. return copyReader(source, dest, DEFAULT_COPY_BUFFER_SIZE);
  8. }

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.net

  1. /***
  2. * Copies the contents of a Reader to a Writer using a
  3. * copy buffer of a given size. The contents of the Reader are
  4. * read until its end is reached, but neither the source nor the
  5. * destination are closed. You must do this yourself outside of the
  6. * method call. The number of characters read/written is returned.
  7. * <p>
  8. * @param source The source Reader.
  9. * @param dest The destination writer.
  10. * @param bufferSize The number of characters to buffer during the copy.
  11. * @return The number of characters read/written in the copy operation.
  12. * @exception CopyStreamException If an error occurs while reading from the
  13. * source or writing to the destination. The CopyStreamException
  14. * will contain the number of bytes confirmed to have been
  15. * transferred before an
  16. * IOException occurred, and it will also contain the IOException
  17. * that caused the error. These values can be retrieved with
  18. * the CopyStreamException getTotalBytesTransferred() and
  19. * getIOException() methods.
  20. ***/
  21. public static final long copyReader(Reader source, Writer dest,
  22. int bufferSize)
  23. throws CopyStreamException
  24. {
  25. return copyReader(source, dest, bufferSize,
  26. CopyStreamEvent.UNKNOWN_STREAM_SIZE, null);
  27. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-net

  1. /***
  2. * Copies the contents of a Reader to a Writer using a
  3. * copy buffer of a given size. The contents of the Reader are
  4. * read until its end is reached, but neither the source nor the
  5. * destination are closed. You must do this yourself outside of the
  6. * method call. The number of characters read/written is returned.
  7. * <p>
  8. * @param source The source Reader.
  9. * @param dest The destination writer.
  10. * @param bufferSize The number of characters to buffer during the copy.
  11. * @return The number of characters read/written in the copy operation.
  12. * @exception CopyStreamException If an error occurs while reading from the
  13. * source or writing to the destination. The CopyStreamException
  14. * will contain the number of bytes confirmed to have been
  15. * transferred before an
  16. * IOException occurred, and it will also contain the IOException
  17. * that caused the error. These values can be retrieved with
  18. * the CopyStreamException getTotalBytesTransferred() and
  19. * getIOException() methods.
  20. ***/
  21. public static final long copyReader(Reader source, Writer dest,
  22. int bufferSize)
  23. throws CopyStreamException
  24. {
  25. return copyReader(source, dest, bufferSize,
  26. CopyStreamEvent.UNKNOWN_STREAM_SIZE, null);
  27. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-net

  1. /***
  2. * List the command help from the server.
  3. * <p>
  4. * @return The sever help information.
  5. * @exception NNTPConnectionClosedException
  6. * If the NNTP server prematurely closes the connection as a result
  7. * of the client being idle or some other reason causing the server
  8. * to send NNTP reply code 400. This exception may be caught either
  9. * as an IOException or independently as itself.
  10. * @exception IOException If an I/O error occurs while either sending a
  11. * command to the server or receiving a reply from the server.
  12. ***/
  13. public String listHelp() throws IOException
  14. {
  15. StringWriter help;
  16. Reader reader;
  17. if (!NNTPReply.isInformational(help()))
  18. return null;
  19. help = new StringWriter();
  20. reader = new DotTerminatedMessageReader(_reader_);
  21. Util.copyReader(reader, help);
  22. reader.close();
  23. help.close();
  24. return help.toString();
  25. }

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.net

  1. /***
  2. * List the command help from the server.
  3. * <p>
  4. * @return The sever help information.
  5. * @exception NNTPConnectionClosedException
  6. * If the NNTP server prematurely closes the connection as a result
  7. * of the client being idle or some other reason causing the server
  8. * to send NNTP reply code 400. This exception may be caught either
  9. * as an IOException or independently as itself.
  10. * @exception IOException If an I/O error occurs while either sending a
  11. * command to the server or receiving a reply from the server.
  12. ***/
  13. public String listHelp() throws IOException
  14. {
  15. StringWriter help;
  16. Reader reader;
  17. if (!NNTPReply.isInformational(help()))
  18. return null;
  19. help = new StringWriter();
  20. reader = new DotTerminatedMessageReader(_reader_);
  21. Util.copyReader(reader, help);
  22. reader.close();
  23. help.close();
  24. return help.toString();
  25. }

相关文章