审批结果回传小程序

This commit is contained in:
chenglijuan
2026-04-22 18:32:34 +08:00
committed by ws
parent 4ac8fa20cb
commit 9a251d7603
16 changed files with 857 additions and 62 deletions
@@ -0,0 +1,26 @@
package com.example.mini_program.aes;
import java.util.ArrayList;
class ByteGroup {
ArrayList<Byte> byteContainer = new ArrayList<Byte>();
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();
}
}