base64解密后的数组怎么变短了

publicstaticbyte[]decode(byte[]input,intoffset,intlen,intflags){//Allocatespaceforthe... public static byte[] decode(byte[] input, int offset, int len, int flags) {
// Allocate space for the most data the input could represent.
// (It could contain less if it contains whitespace, etc.)
Decoder decoder = new Decoder(flags, new byte[len*3/4]);

if (!decoder.process(input, offset, len, true)) {
throw new IllegalArgumentException("bad base-64");
}

// Maybe we got lucky and allocated exactly enough output space.
if (decoder.op == decoder.output.length) {
return decoder.output;
}

// Need to shorten the array, so allocate a new one of the
// right size and copy.
byte[] temp = new byte[decoder.op];
System.arraycopy(decoder.output, 0, temp, 0, decoder.op);
return temp;
}
这是Base64的源码.可以看到第四行 new byte[len*3/4]把长度变成了*3/4.我本来解密前的byte数组长1024.解密后就变成了758,数据丢了.怎么解决这个问题???
展开
 我来答
匿名用户
2013-10-26
展开全部
commons-codec 挺好用的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式