Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for charStream (0.06 sec)

  1. guava/src/com/google/common/io/CharSource.java

      public long copyTo(Appendable appendable) throws IOException {
        checkNotNull(appendable);
    
        Closer closer = Closer.create();
        try {
          Reader reader = closer.register(openStream());
          return CharStreams.copy(reader, appendable);
        } catch (Throwable e) {
          throw closer.rethrow(e);
        } finally {
          closer.close();
        }
      }
    
      /**
       * Copies the contents of this source to the given sink.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/CharSink.java

       *     this sink
       */
      @CanIgnoreReturnValue
      public long writeFrom(Readable readable) throws IOException {
        checkNotNull(readable);
    
        try (Writer out = openStream()) {
          return CharStreams.copy(readable, out);
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top