gpt4 book ai didi

c - 使用 C 将二进制文件写入 ASCII 代码

转载 作者:行者123 更新时间:2023-11-30 21:03:17 24 4
gpt4 key购买 nike

我正在尝试读取二进制文件并将其写入 ASCII 格式。我用 C 编写了一个基本程序。它读取二进制文件,但以二进制而不是 ASCII 代码写入。

如何以 ASCII 代码/格式编写二进制文件?

    #include <stdio.h>
#include <cstdlib>
main ( int argc, char *argv[ ] )
{
FILE *fs, *ft ;
char ch ;
if ( argc != 3 )
{
puts ( "Improper number of arguments" ) ;
exit(1) ;
}
fs = fopen ( argv[1], "rb" ) ;
if ( fs == NULL )
{
puts ( "Cannot open source file" ) ;
exit(1) ;
}
ft = fopen ( argv[2], "w" ) ;
if ( ft == NULL )
{
puts ( "Cannot open target file" ) ;
fclose ( fs ) ;
exit(1) ;
}
while ( 1 )
{
ch = fgetc ( fs ) ;
if ( ch == EOF )
break ;
else
fputc ( ch, ft ) ;
}
fclose ( fs ) ;
fclose ( ft ) ;
}

这里我上传我的 .g 二进制文件屏幕截图

ctrlv.in/428546您可以从下载 http://www.fileswap.com/dl/KU3xlwTI9d/

最佳答案

既然您在评论中提到“任何文本形式”都可以,那么有一种方法:

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char ** argv) {
if ( argc != 3 ) {
fprintf(stderr, "You need two arguments.\n");
return EXIT_FAILURE;
}

FILE * infile = fopen(argv[1], "rb");
if ( !infile ) {
fprintf(stderr, "Couldn't open file: %s\n", argv[1]);
return EXIT_FAILURE;
}

FILE * outfile = fopen(argv[2], "w");
if ( !outfile ) {
fprintf(stderr, "Couldn't open file: %s\n", argv[2]);
return EXIT_FAILURE;
}

int ch;
while ( (ch = fgetc(infile)) != EOF ) {
fprintf(outfile, "%x", ch);
}
fputc('\n', outfile);

fclose(infile);
fclose(outfile);

return EXIT_SUCCESS;
}

示例 session :

paul@local:~/src/sandbox$ hexdump binfile
0000000 6854 7369 6920 2073 6874 2065 7564 626d
0000010 7365 2074 7571 7365 6974 6e6f 4920 7627
0000020 2065 6573 6e65 0a2e
0000028
paul@local:~/src/sandbox$ ./bin2txt binfile txtfile
paul@local:~/src/sandbox$ cat txtfile
54686973206973207468652064756d62657374207175657374696f6e2049277665207365656e2ea
paul@local:~/src/sandbox$

txtfile现在包含 bin file 内容的文本表示.

编辑:开个玩笑,我不确定您是否真的理解“二进制”和“文本”的含义。考虑以下程序:

#include <stdio.h>
#include <stdlib.h>

int main(void) {
FILE * numfile = fopen("file.num", "wb");
if ( !numfile ) {
perror("Couldn't open file.num for writing");
return EXIT_FAILURE;
}

FILE * txtfile = fopen("file.txt", "w");
if ( !txtfile ) {
perror("Couldn't open file.txt for writing");
return EXIT_FAILURE;
}

int num = 0x0a216148;
fprintf(txtfile, "Ha!\n");
fwrite(&num, sizeof(num), 1, numfile);

fclose(numfile);
fclose(txtfile);

return EXIT_SUCCESS;
}

因此,我们有一个程序可以创建两个文件 - 一个包含文本 "Ha!\n" 的文本文件。 ,以及包含数字 0x0a216148 的二进制文件十六进制,或 169,959,752以十进制表示。那么让我们运行它,看看这些文件:

paul@local:~/src/sandbox$ ./mkfiles
paul@local:~/src/sandbox$ cat file.txt
Ha!
paul@local:~/src/sandbox$ cat file.num
Ha!
paul@local:~/src/sandbox$

发生什么事了?事实证明 'H' 的 ASCII 字符, 'a' , '!''\n'出来0x48 , 0x61 , 0x210x0a 。当你把它们串在一起时,你会得到 0x4861210a在小端架构上,这与表示数字 169,959,752 的方式完全相同。四字节int .

所以,如果您有一个包含 0x48 的二进制文件, 0x61 , 0x210x0a ,你想“翻译成文字”,那你告诉我——我们是翻译成“哈!”,还是翻译成“一亿六千九百万,九十五万九千,七百”五十二”?

正如您希望看到的那样,除非您知道我创建该文件时的想法,否则无法回答这个问题。我的意思也可能是。或者我可能指的是完全不同的东西,例如 32 位 RGBA 值。当不同的东西可以用相同的方式编码时,如果你想解码它,你必须知道我使用的是什么编码。

因此,询问“如何将二进制文件转换为文本?”根本没有任何意义。除非你也回答这个问题,“所有这些二进制信息是什么意思?”,因为数字实际上可以用来表示任何类型的信息。而且,要了解它的含义,您必须了解创建该文件的事物在创建该文件时正在做什么。

关于c - 使用 C 将二进制文件写入 ASCII 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25965555/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com