我想知道如何让这段代码将文本文件从文本值覆盖为ASCII值。
我希望它能做到这样的事情:
CMD> c:\ users \ username \ desktop> cA5.exe content.txt
content.txt中有“abc”,我希望命令行将“abc”更改为它的ASCII值。 97 ...等我不希望在命令窗口中写入任何内容,我希望它在文本文件中更改。这是可能的,如果是这样,我怎么能用这个现有的代码呢?
#include <stdio.h>
#include <stdlib.h>
int main(int argc[1], char *argv[1])
{
FILE *fp; // declaring variable
fp = fopen(argv[1], "rb");
if (fp != NULL) // checks the return value from fopen
{
int i;
do
{
i = fgetc(fp); // scans the file
printf("%c",i);
printf(" ");
}
while(i!=-1);
fclose(fp);
}
else
{
printf("Error.\n");
}
}
答案 0 :(得分:1)
不是最好的代码,但非常简单。
#include <stdio.h>
#include <stdlib.h>
void convertToAHex(char *data, long int size, FILE *file){
rewind(file);
int i;
for(i = 0; i < size; ++i){
fprintf(file, "%d ", data[i]);
}
}
int main(int argc, char *argv[]){
if(argc != 2){
return EXIT_FAILURE;
}
FILE *file = fopen(argv[1], "r+");
if(file){
char *data;
long int size;
fseek(file, 0, SEEK_END);
size = ftell(file);
rewind(file);
data = (char *) calloc(size, sizeof(char));
if(data){
fread(data, 1, size, file);
convertToAHex(data, size, file);
free(data);
}
fclose(file);
}
return EXIT_SUCCESS;
}