用C打开文件并将其内容读入字符串(char *,char []等)的最简单方法是什么(最容易出错,代码行最少,但是您要解释它)?
string s = File.ReadAllText(filename);
。这怎么可能更简单,更容易出错?
用C打开文件并将其内容读入字符串(char *,char []等)的最简单方法是什么(最容易出错,代码行最少,但是您要解释它)?
string s = File.ReadAllText(filename);
。这怎么可能更简单,更容易出错?
Answers:
我倾向于将整个缓冲区作为原始内存块加载到内存中,然后自己进行解析。这样,我可以最好地控制标准库在多个平台上的功能。
这是我使用的存根。您可能还需要检查fseek,ftell和fread的错误代码。(为清楚起见,省略)。
char * buffer = 0;
long length;
FILE * f = fopen (filename, "rb");
if (f)
{
fseek (f, 0, SEEK_END);
length = ftell (f);
fseek (f, 0, SEEK_SET);
buffer = malloc (length);
if (buffer)
{
fread (buffer, 1, length, f);
}
fclose (f);
}
if (buffer)
{
// start to process your data / extract strings here...
}
fread
字符串不会零结尾。这可能会导致一些麻烦。
buffer = malloc (length + 1);
在fclose之后更改并添加:(buffer[length] = '\0';
由Valgrind验证)
不幸的是,另一个与操作系统高度相关的解决方案是对文件进行内存映射。好处通常包括读取性能和减少内存使用,因为应用程序视图和操作系统文件缓存可以实际共享物理内存。
POSIX代码如下所示:
int fd = open("filename", O_RDONLY);
int len = lseek(fd, 0, SEEK_END);
void *data = mmap(0, len, PROT_READ, MAP_PRIVATE, fd, 0);
另一方面,Windows则有些棘手,但是不幸的是,我前面没有要测试的编译器,但是该功能由CreateFileMapping()
和提供MapViewOfFile()
。
如果“将其内容读入字符串”表示该文件不包含代码为0的字符,则还可以使用getdelim()函数,该函数可以接受一个内存块并在必要时对其进行重新分配,或者仅分配整个缓冲区用于您,然后将文件读入其中,直到遇到指定的分隔符或文件结尾。只需传递“ \ 0”作为分隔符即可读取整个文件。
GNU C库(http://www.gnu.org/software/libc/manual/html_mono/libc.html#index-getdelim-994)中提供了此功能。
示例代码可能看起来像
char* buffer = NULL;
size_t len;
ssize_t bytes_read = getdelim( &buffer, &len, '\0', fp);
if ( bytes_read != -1) {
/* Success, now the entire file is in the buffer */
如果您正在读取特殊文件(例如stdin或管道),则将无法使用fstat预先获取文件大小。另外,如果您正在读取二进制文件,由于嵌入的'\ 0'字符,fgets将会丢失字符串大小信息。读取文件的最佳方法是使用read和realloc:
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
int main () {
char buf[4096];
ssize_t n;
char *str = NULL;
size_t len = 0;
while (n = read(STDIN_FILENO, buf, sizeof buf)) {
if (n < 0) {
if (errno == EAGAIN)
continue;
perror("read");
break;
}
str = realloc(str, len + n + 1);
memcpy(str + len, buf, n);
len += n;
str[len] = '\0';
}
printf("%.*s\n", len, str);
return 0;
}
注意:这是对上面接受的答案的修改。
这是完成错误检查的一种方法。
我添加了一个大小检查器,以在文件大于1 GiB时退出。我这样做是因为该程序将整个文件放入一个字符串中,这可能会使用过多的内存并导致计算机崩溃。但是,如果您不在乎,则可以将其从代码中删除。
#include <stdio.h>
#include <stdlib.h>
#define FILE_OK 0
#define FILE_NOT_EXIST 1
#define FILE_TO_LARGE 2
#define FILE_READ_ERROR 3
char * c_read_file(const char * f_name, int * err, size_t * f_size) {
char * buffer;
size_t length;
FILE * f = fopen(f_name, "rb");
size_t read_length;
if (f) {
fseek(f, 0, SEEK_END);
length = ftell(f);
fseek(f, 0, SEEK_SET);
// 1 GiB; best not to load a whole large file in one string
if (length > 1073741824) {
*err = FILE_TO_LARGE;
return NULL;
}
buffer = (char *)malloc(length + 1);
if (length) {
read_length = fread(buffer, 1, length, f);
if (length != read_length) {
*err = FILE_READ_ERROR;
return NULL;
}
}
fclose(f);
*err = FILE_OK;
buffer[length] = '\0';
*f_size = length;
}
else {
*err = FILE_NOT_EXIST;
return NULL;
}
return buffer;
}
并检查错误:
int err;
size_t f_size;
char * f_data;
f_data = c_read_file("test.txt", &err, &f_size);
if (err) {
// process error
}
如果您使用glib
,则可以使用g_file_get_contents ;
gchar *contents;
GError *err = NULL;
g_file_get_contents ("foo.txt", &contents, NULL, &err);
g_assert ((contents == NULL && err != NULL) || (contents != NULL && err == NULL));
if (err != NULL)
{
// Report error to user, and free error
g_assert (contents == NULL);
fprintf (stderr, "Unable to read file: %s\n", err->message);
g_error_free (err);
}
else
{
// Use file contents
g_assert (contents != NULL);
}
}
// Assumes the file exists and will seg. fault otherwise.
const GLchar *load_shader_source(char *filename) {
FILE *file = fopen(filename, "r"); // open
fseek(file, 0L, SEEK_END); // find the end
size_t size = ftell(file); // get the size in bytes
GLchar *shaderSource = calloc(1, size); // allocate enough bytes
rewind(file); // go back to file beginning
fread(shaderSource, size, sizeof(char), file); // read each char into ourblock
fclose(file); // close the stream
return shaderSource;
}
这是一个非常粗糙的解决方案,因为没有检查是否存在null。
glShaderSource
可选的长度。
刚刚从上面接受的答案进行了修改。
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
char *readFile(char *filename) {
FILE *f = fopen(filename, "rt");
assert(f);
fseek(f, 0, SEEK_END);
long length = ftell(f);
fseek(f, 0, SEEK_SET);
char *buffer = (char *) malloc(length + 1);
buffer[length] = '\0';
fread(buffer, 1, length, f);
fclose(f);
return buffer;
}
int main() {
char *content = readFile("../hello.txt");
printf("%s", content);
}
我将根据此处的答案添加自己的版本,仅供参考。我的代码考虑了sizeof(char)并添加了一些注释。
// Open the file in read mode.
FILE *file = fopen(file_name, "r");
// Check if there was an error.
if (file == NULL) {
fprintf(stderr, "Error: Can't open file '%s'.", file_name);
exit(EXIT_FAILURE);
}
// Get the file length
fseek(file, 0, SEEK_END);
long length = ftell(file);
fseek(file, 0, SEEK_SET);
// Create the string for the file contents.
char *buffer = malloc(sizeof(char) * (length + 1));
buffer[length] = '\0';
// Set the contents of the string.
fread(buffer, sizeof(char), length, file);
// Close the file.
fclose(file);
// Do something with the data.
// ...
// Free the allocated string space.
free(buffer);
简单易用(假设文件中的内容少于10000):
void read_whole_file(char fileName[1000], char buffer[10000])
{
FILE * file = fopen(fileName, "r");
if(file == NULL)
{
puts("File not found");
exit(1);
}
char c;
int idx=0;
while (fscanf(file , "%c" ,&c) == 1)
{
buffer[idx] = c;
idx++;
}
buffer[idx] = 0;
}