• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 为什么在Objective C中转换为字符串时char数组会插入尾随字符?

[复制链接]
菜鸟教程小白 发表于 2022-12-13 01:34:34 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试在 NSString 上编写一个快速类别来对字符串的内容进行 base64 编码。一切似乎都很好,除了在生成的字符串的尾端出现了额外的字符。谁能解释一下为什么下面的代码会产生下面的输出?

来源:

const char base64CharSet[64] = {
    'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
    'I', 'J', 'K', 'L', 'M', 'N', 'O', '',
    'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
    'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
    'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
    'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
    'w', 'x', 'y', 'z', '0', '1', '2', '3',
    '4', '5', '6', '7', '8', '9', '+', '/'
};

const char *input = "Hello, World!";

int length = strlen(input);
int outlen = (length / 3) * 4;
int modlen = length % 3;
int rawlen = length - modlen;

if (modlen != 0)
    outlen += 4;

char output[outlen];

char inbuf[3], outbuf[4];
int inpos = 0, outpos = 0;

for (outpos = 0, inpos = 0; inpos < rawlen; inpos += 3) {
    for (int i = 0; i <  3; i++) {
        int j = inpos + i;
        inbuf[i] = j < length ? input[j] : 0;
    }

    outbuf[0] =  (inbuf[0] & 0xFC) >> 2;
    outbuf[1] = ((inbuf[0] & 0x03) << 4) | ((inbuf[1] & 0xF0) >> 4);
    outbuf[2] = ((inbuf[1] & 0x0F) << 2) | ((inbuf[2] & 0xC0) >> 6);
    outbuf[3] =  (inbuf[2] & 0x3F);

    output[outpos++] = base64CharSet[outbuf[0]];
    output[outpos++] = base64CharSet[outbuf[1]];
    output[outpos++] = base64CharSet[outbuf[2]];
    output[outpos++] = base64CharSet[outbuf[3]];
}

if (modlen > 0) {
    char modbuf[3] = {0, 0, 0};

    for (int i = 0; i < modlen; i++) {
        int j = rawlen + i;
        modbuf[i] = input[j];
    }

    outbuf[0] =  (modbuf[0] & 0xFC) >> 2;
    outbuf[1] = ((modbuf[0] & 0x03) << 4) | ((modbuf[1] & 0xF0) >> 4);
    outbuf[2] = ((modbuf[1] & 0x0F) << 2) | ((modbuf[2] & 0xC0) >> 6);
    outbuf[3] =  (modbuf[2] & 0x3F);

    output[outpos++] = base64CharSet[outbuf[0]];
    output[outpos++] = base64CharSet[outbuf[1]];
    output[outpos++] = modlen == 2 ? base64CharSet[outbuf[2]] : '=';
    output[outpos++] = '=';
}

NSLog(@"Input: '%s', Length: %zd", input, strlen(input));
NSLog(@"Output: '%s', Length: %zd, Expected Length: %d", output, strlen(output), outlen);

输出:

2013-03-19 14:46:51.568 Sandbox[19195:c07] Input: 'Hello, World!', Length: 13
2013-03-19 14:46:51.569 Sandbox[19195:c07] Output: 'SGVsbG8sIFdvcmxkIQ==wä]', Length: 23, Expected Length: 20



Best Answer-推荐答案


2013-03-19 14:46:51.569 Sandbox[19195:c07] Output: 'SGVsbG8sIFdvcmxkIQ==wä]', Length: 23, Expected Length: 20

最后的 goober 是因为您没有 NULL 终止输出缓冲区。 C 字符串要求字符串中最后一个字符之后的字符为 0(全为 0 位,而不是 ASCII "0"


... appending to a full array would raise an exception ...

欢迎来到 C!该语言类似于用剪刀奔跑。即使跌倒,也不会受伤。可能不会。

在这种情况下,您实际上并没有写入 NULL 字节,因此,C 字符串的打印只是读取您的字符串数组之后发生在堆栈上的任何内容。我没有审核代码以确定缓冲区的大小是否正确。

假设您的所有数学运算都是正确的,您可以将缓冲区分配为比编码所需的长一个字节,然后将终止符放在那里。

char output[outlen + 1];
output[outlen + 1] = 0;

关于ios - 为什么在Objective C中转换为字符串时char数组会插入尾随字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15508231/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap