首先,我正在创建一个程序,该程序将读取字符行并找到单词(它们不必具有含义,即&#39; ab可能是单词)并将它们存储在适当的位置数据结构。我使用trie结构来存储单词。我给了一个映射文件作为命令行参数但在映射文件中我有两个数据文件,我需要从中获取信息。用法界面如下:first(program name) <mappingfile>
。
在映射文件中,存在两个数据文件:<dictFile>
和<dataFile>
。我不知道如何阅读和存储提供两个数据文件的信息。到目前为止,我有以下内容:
#include <stdio.h>
#include<stdlib.h>
void readDict(FILE *dict_file){
}
int main(int argc, char *argv[]){
FILE* file;
if(argc != 2){ //error in inputing, not 2 files
printf("error\n");
return 0;
}
file = fopen(argv[1],"r" ); //reading the mapping file
input;
if(file == NULL){ //nothing inside file
printf("file does not exist\n");
return 0;
}
}
我的目标是让指针指向映射文件中的各个数据文件,我可以使用它们来读取它们的内容。
我将在命令行中输入以下内容:
first(program name) <mappingfile>
。
Inisde映射文件包含表单中两个普通.txt文件的行
<dictFile>
<dataFile>
。
我希望使用指向相应文件的指针访问<dictFile>
和<dataFile>
..的内容。
答案 0 :(得分:0)
如果我理解正确,应该这样做。请注意,它假定您的文件名没有任何空格。如果你想使用“非安全”api,你需要在配置属性 - &gt;下的项目属性中添加_CRT_SECURE_NO_WARNINGS。 C / C ++ - &gt;预处理器 - &gt;预处理器定义。
#include <stdio.h>
#include<stdlib.h>
void readDict(FILE *dict_file){
}
int main(int argc, char *argv[]){
FILE* file;
if(argc != 2){ //error in inputing, not 2 files
printf("error\n");
return 1;
}
file = fopen(argv[1],"r" ); //reading the mapping file
//input;
if(file == NULL){ //nothing inside file
printf("file does not exist\n");
return 1;
}
char dictFileString[256], dataFileString[256];
fscanf( file, "%255s %255s", dictFileString, dataFileString );
FILE *dictFile, *dataFile;
dictFile = fopen( dictFileString, "r" );
if (dictFile == NULL) {
printf( "%s does not exist\n", dictFileString );
fclose(file);
return 1;
}
dataFile = fopen( dataFileString, "r" );
if (dataFile == NULL) {
printf( "%s does not exist\n", dataFileString );
fclose(file);
fclose(dictFile);
return 1;
}
readDict(dictFile);
// The additional logic would be placed here.
fclose( dictFile );
fclose( dataFile );
// If you need to read additional file names then loop
// back up to read the next line of 'file'
fclose( file );
return 0;
}
答案 1 :(得分:0)
如果我正确理解了您的问题,您想解析一个文件,其中每行包含两个其他文件的文件名,然后从这些文件中读取。你可以做的是使用fgets
逐行读取你的映射文件。接下来你要做的是使用函数strtok
将字符串拆分为空格。我会一步一步地为你分解。
首先,我们要打开用于阅读的映射文件
if((file = fopen(argv[1],"r")) == NULL) {
perror("error opening file");
return 1;
}
这将尝试打开程序命令行参数指定的映射文件,如果失败则会打印相应的错误消息。
while(fgets(buf, sizeof(buf), file) != NULL) {
在我们打开文件之后,我们想要遍历所有行,直到我们到达文件末尾,fgets
将返回NULL。 fgets
会将当前行放入buf
。
dictfilename = strtok(buf, " ");
datafilename = strtok(NULL, " ");
strtok(dictfilename, "\n"); /* Remove any trailing newlines */
strtok(datafilename, "\n");
我们需要将fgets
读取的行拆分为分隔符(空格),以便我们知道哪个部分对应于dictfile和数据文件。这是通过使用strtok
函数来完成的,该函数在空格之前返回指向子字符串的指针,当传入NULL时,它将返回指向空白之后的子字符串的指针。删除任何尾随换行符的一种有点奇怪的方法是使用strtok
和换行符作为分隔符。
if((dictfile = fopen(dictfilename,"r")) == NULL) {
fprintf(stderr, "error opening file %s: %s\n", dictfilename, strerror(errno));
return 1;
}
if((datafile = fopen(datafilename,"r")) == NULL) {
fprintf(stderr, "error opening file %s: %s\n", datafilename, strerror(errno));
return 1;
}
非常类似于我们如何打开映射文件,我们现在打开在fgets
读取的当前行上找到的两个文件,其中“r”模式打开以供阅读。如果文件不存在或找不到,则fopen调用失败。
printf("Content of %s:\n", dictfilename);
while ((c = getc(dictfile)) != EOF)
putchar(c);
printf("\nContent of %s:\n", datafilename);
while ((c = getc(datafile)) != EOF)
putchar(c);
这是一种非常简单的“转储”文件内容的方法。它使用getc
从文件中读取下一个字符并打印它直到它读取EOF。这是你应该做自己的功能的地方。
fclose(dictfile);
fclose(datafile);
不要忘记之后关闭文件,否则会泄漏资源。
最后这里是我刚刚描述的代码
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#define MAX_LENGTH 100 // change this to the actual maximum length of your lines.
int main(int argc, char **argv){
FILE* file, *dictfile, *datafile;
char c;
char buf[MAX_LENGTH];
char *dictfilename, *datafilename;
if(argc != 2) {
fprintf(stderr, "Usage: %s <mapping file>\n", argv[0]);
return 0;
}
if((file = fopen(argv[1],"r")) == NULL) {
perror("error opening file");
return 1;
}
while(fgets(buf, sizeof(buf), file) != NULL) {
dictfilename = strtok(buf, " ");
datafilename = strtok(NULL, " ");
strtok(dictfilename, "\n"); /* Remove any trailing newlines */
strtok(datafilename, "\n");
if((dictfile = fopen(dictfilename,"r")) == NULL) {
fprintf(stderr, "error opening file %s: %s\n", dictfilename, strerror(errno));
return 1;
}
if((datafile = fopen(datafilename,"r")) == NULL) {
fprintf(stderr, "error opening file %s: %s\n", datafilename, strerror(errno));
return 1;
}
// do something with the files (e.g read all the content)
printf("Content of %s:\n", dictfilename);
while ((c = getc(dictfile)) != EOF)
putchar(c);
printf("\nContent of %s:\n", datafilename);
while ((c = getc(datafile)) != EOF)
putchar(c);
printf("\n");
// don't forget to close the files when you're done with them.
fclose(dictfile);
fclose(datafile);
}
fclose(file);
}