程序包 proguard.io

类 DataEntryRewriter

    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      protected void copyData​(java.io.InputStream inputStream, java.io.OutputStream outputStream)
      Copies all data that it can read from the given input stream to the given output stream.
      protected void copyData​(java.io.Reader reader, java.io.Writer writer)
      Copies all data that it can read from the given reader to the given writer.
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 构造器详细资料

      • DataEntryRewriter

        public DataEntryRewriter​(ClassPool classPool,
                                 java.nio.charset.Charset charset,
                                 DataEntryWriter dataEntryWriter)
        Creates a new DataEntryRewriter.
    • 方法详细资料

      • copyData

        protected void copyData​(java.io.InputStream inputStream,
                                java.io.OutputStream outputStream)
                         throws java.io.IOException
        从类复制的说明: DataEntryCopier
        Copies all data that it can read from the given input stream to the given output stream. The caller of this method will open and afterwards flush and close the input stream and the output stream. The implementation of this method needs to make sure that any wrapping output streams are flushed before returning.
        覆盖:
        copyData 在类中 DataEntryCopier
        抛出:
        java.io.IOException
      • copyData

        protected void copyData​(java.io.Reader reader,
                                java.io.Writer writer)
                         throws java.io.IOException
        Copies all data that it can read from the given reader to the given writer.
        抛出:
        java.io.IOException