Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for byteStream (0.15 sec)

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

      public long writeFrom(InputStream input) throws IOException {
        checkNotNull(input);
    
        Closer closer = Closer.create();
        try {
          OutputStream out = closer.register(openStream());
          long written = ByteStreams.copy(input, out);
          out.flush(); // https://code.google.com/p/guava-libraries/issues/detail?id=1330
          return written;
        } catch (Throwable e) {
          throw closer.rethrow(e);
        } finally {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 28 20:13:02 GMT 2023
    - 5.5K bytes
    - Viewed (0)
Back to top