我正在寻找一个跨平台(Windows + Linux)解决方案,将整个文件的内容读入char *
。
这就是我现在所拥有的:
FILE *stream;
char *contents;
fileSize = 0;
//Open the stream
stream = fopen(argv[1], "r");
//Steak to the end of the file to determine the file size
fseek(stream, 0L, SEEK_END);
fileSize = ftell(stream);
fseek(stream, 0L, SEEK_SET);
//Allocate enough memory (should I add 1 for the \0?)
contents = (char *)malloc(fileSize);
//Read the file
fscanf(stream, "%s", contents);
//Print it again for debugging
printf("Read %s\n", contents);
不幸的是,这只会打印文件中的第一行,因此我假设fscanf在第一个换行符处停止。但是,我想阅读整个文件,包括并保留新行字符。我不想使用while循环和realloc手动构造整个字符串,我的意思是必须有一个更简单的方法?
答案 0 :(得分:2)
这样的事情,可能是吗?
FILE *stream;
char *contents;
fileSize = 0;
//Open the stream. Note "b" to avoid DOS/UNIX new line conversion.
stream = fopen(argv[1], "rb");
//Seek to the end of the file to determine the file size
fseek(stream, 0L, SEEK_END);
fileSize = ftell(stream);
fseek(stream, 0L, SEEK_SET);
//Allocate enough memory (add 1 for the \0, since fread won't add it)
contents = malloc(fileSize+1);
//Read the file
size_t size=fread(contents,1,fileSize,stream);
contents[size]=0; // Add terminating zero.
//Print it again for debugging
printf("Read %s\n", contents);
//Close the file
fclose(stream);
free(contents);
答案 1 :(得分:0)
函数fread
将从流中读取,而不是终止于行尾字符。
从man
页面,您有:
size_t fread(void *restrict ptr, size_t size, size_t nitems, FILE *restrict stream);
读取大小 size 的 nitems 。
答案 2 :(得分:0)
fread
按原样读取所有文件:
if (fread(contents, 1, fileSize, stream) != fileSize) {
/* error occurred */
}
答案 3 :(得分:0)
我有这个:
ssize_t filetomem(const char *filename, uint8_t **result)
{
ssize_t size = 0;
FILE *f = fopen(filename, "r");
if (f == NULL)
{
*result = NULL;
return -1;
}
fseek(f, 0, SEEK_END);
size = ftell(f);
fseek(f, 0, SEEK_SET);
*result = malloc(size);
if (size != fread(*result, sizeof(**result), size, f))
{
free(*result);
return -2;
}
fclose(f);
return size;
}
返回值的含义: