Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for BufferedReader (0.25 sec)

  1. android/guava/src/com/google/common/io/Files.java

       *     helpful predefined constants
       * @return the buffered reader
       */
      public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException {
        checkNotNull(file);
        checkNotNull(charset);
        return new BufferedReader(new InputStreamReader(new FileInputStream(file), charset));
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jul 22 19:03:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Files.java

       *     helpful predefined constants
       * @return the buffered reader
       */
      public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException {
        checkNotNull(file);
        checkNotNull(charset);
        return new BufferedReader(new InputStreamReader(new FileInputStream(file), charset));
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jul 22 19:03:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/FilesTest.java

    import static org.junit.Assert.assertThrows;
    
    import com.google.common.collect.ImmutableList;
    import com.google.common.hash.Hashing;
    import com.google.common.primitives.Bytes;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.PrintWriter;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *
       * <pre>{@code
       * final ClosingFuture<BufferedReader> file1ReaderFuture = ...;
       * final ClosingFuture<BufferedReader> file2ReaderFuture = ...;
       * ListenableFuture<Integer> numberOfDifferentLines =
       *       ClosingFuture.whenAllSucceed(file1ReaderFuture, file2ReaderFuture)
       *           .call(
       *               (closer, peeker) -> {
       *                 BufferedReader file1Reader = peeker.getDone(file1ReaderFuture);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 08 19:36:35 UTC 2024
    - 98.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/CopyUtil.java

        }
    
        /**
         * 必要があればリーダーを{@link BufferedReader}でラップします。
         *
         * @param reader
         *            リーダー
         * @return ラップされたリーダー
         */
        protected static Reader wrap(final Reader reader) {
            if (reader instanceof BufferedReader) {
                return reader;
            }
            if (reader instanceof StringReader) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. test-site/activator-launch-1.3.2.jar

    java.util.regex.Pattern propertyPattern$lzycompute(); public final LaunchConfiguration xsbt$boot$ConfigurationParser$$apply(java.io.BufferedReader); private static scala.collection.immutable.List readLine(java.io.BufferedReader, scala.collection.immutable.List, int); public final scala.collection.immutable.List xsbt$boot$ConfigurationParser$$readRepositoriesConf(java.io.BufferedReader); public final scala.Tuple2 getClassifiers(ListMap, String); public final scala.Tuple2 getVersion(ListMap, String, String);...
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (0)
Back to top