Home | History | Annotate | Download | only in io

Lines Matching full:link

86    * Returns a factory that will supply instances of {@link FileInputStream}
103 * Returns a factory that will supply instances of {@link FileOutputStream}
115 * Returns a factory that will supply instances of {@link FileOutputStream}
135 * {@link InputStreamReader} that read a file using the given character set.
147 * Returns a factory that will supply instances of {@link OutputStreamWriter}
160 * Returns a factory that will supply instances of {@link OutputStreamWriter}
205 * Reads all characters from a file into a {@link String}, using the given
218 * Copies to a file all bytes from an {@link InputStream} supplied by a
242 * Copies all bytes from a file to an {@link OutputStream} supplied by
277 * Copies to a file all characters from a {@link Readable} and
278 * {@link Closeable} object supplied by a factory, using the given
335 * Copies all characters from a file to a {@link Appendable} &
336 * {@link Closeable} object supplied by a factory, using the given
392 * <p>Use this method instead of {@link File#createTempFile(String, String)}
463 * <p>If the file argument is a symbolic link or there is a symbolic
464 * link in the path leading to the directory, this method will do
492 * <p>If the file argument is a symbolic link the link will be deleted
493 * but not the target of the link. If the argument is a directory,
531 * @return a mutable {@link List} containing all the lines
540 * Streams lines from a {@link File}, stopping when our callback returns
545 * @param callback the {@link LineProcessor} to use to handle the lines
559 * {@link #toByteArray}.)
577 * @return the result of {@link Checksum#getValue} after updating the
592 * @return the result of {@link MessageDigest#digest()} after updating the
603 * {@link FileChannel#map(java.nio.channels.FileChannel.MapMode, long, long)}.
607 * <p>This only works for files <= {@link Integer#MAX_VALUE} bytes.
623 * {@link FileChannel#map(java.nio.channels.FileChannel.MapMode, long, long)}
624 * using the requested {@link MapMode}.
628 * <p>This only works for files <= {@link Integer#MAX_VALUE} bytes.
649 * {@link FileChannel#map(java.nio.channels.FileChannel.MapMode, long, long)}
650 * using the requested {@link MapMode}.
654 * <p>If the mode is {@link MapMode#READ_WRITE} and the file does not exist,
658 * <p>This only works for files <= {@link Integer#MAX_VALUE} bytes.