All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tmsps.ne4Weixin.encrypt.ByteGroup Maven / Gradle / Ivy

The newest version!
package com.tmsps.ne4Weixin.encrypt;

import java.util.ArrayList;

class ByteGroup {
    ArrayList byteContainer = new ArrayList();

    public byte[] toBytes() {
        byte[] bytes = new byte[byteContainer.size()];
        for (int i = 0; i < byteContainer.size(); i++) {
            bytes[i] = byteContainer.get(i);
        }
        return bytes;
    }

    public ByteGroup addBytes(byte[] bytes) {
        for (byte b : bytes) {
            byteContainer.add(b);
        }
        return this;
    }

    public int size() {
        return byteContainer.size();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy