当前位置: 首页>>代码示例>>Java>>正文


Java DataSource.feed方法代码示例

本文整理汇总了Java中com.android.apksig.util.DataSource.feed方法的典型用法代码示例。如果您正苦于以下问题:Java DataSource.feed方法的具体用法?Java DataSource.feed怎么用?Java DataSource.feed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.android.apksig.util.DataSource的用法示例。


在下文中一共展示了DataSource.feed方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: outputRecordWithModifiedExtra

import com.android.apksig.util.DataSource; //导入方法依赖的package包/类
/**
 * Outputs this record, replacing its extra field with the provided one, and returns returns the
 * number of bytes output.
 */
public long outputRecordWithModifiedExtra(
        DataSource sourceApk,
        ByteBuffer extra,
        DataSink output) throws IOException {
    long recordStartOffsetInSource = getStartOffsetInArchive();
    int extraStartOffsetInRecord = getExtraFieldStartOffsetInsideRecord();
    int extraSizeBytes = extra.remaining();
    int headerSize = extraStartOffsetInRecord + extraSizeBytes;
    ByteBuffer header = ByteBuffer.allocate(headerSize);
    header.order(ByteOrder.LITTLE_ENDIAN);
    sourceApk.copyTo(recordStartOffsetInSource, extraStartOffsetInRecord, header);
    header.put(extra.slice());
    header.flip();
    ZipUtils.setUnsignedInt16(header, EXTRA_LENGTH_OFFSET, extraSizeBytes);

    long outputByteCount = header.remaining();
    output.consume(header);
    long remainingRecordSize = getSize() - mDataStartOffset;
    sourceApk.feed(recordStartOffsetInSource + mDataStartOffset, remainingRecordSize, output);
    outputByteCount += remainingRecordSize;
    return outputByteCount;
}
 
开发者ID:F8LEFT,项目名称:FApkSigner,代码行数:27,代码来源:LocalFileRecord.java

示例2: outputRecord

import com.android.apksig.util.DataSource; //导入方法依赖的package包/类
/**
 * Outputs this record and returns returns the number of bytes output.
 */
public long outputRecord(DataSource sourceApk, DataSink output) throws IOException {
    long size = getSize();
    sourceApk.feed(getStartOffsetInArchive(), size, output);
    return size;
}
 
开发者ID:F8LEFT,项目名称:FApkSigner,代码行数:9,代码来源:LocalFileRecord.java


注:本文中的com.android.apksig.util.DataSource.feed方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。