我正在从文件emp
读入,并且当文件(下面的最后一个文件 - 工作)被构造为10个带有标题的记录(被{{跳过)时,它正在读取1}}代码中的0)。但当它以3x10格式(这是下面的中间文件,无法正确读取)读入时,每个块的标头为3 - 这是失败的。我不确定为什么循环中的条件没有捕获,循环中的第二个条件不会打印标记为0的所有内容。
fseek()
这里我们有emp文件,它拒绝阅读 int nDeleteSwitch;
char sSSN[10], sName[21];
float nSalary;
char nextIn[3];
printf("SSN NAME SALARY\n");
mioHashFile = fopen("emp", "r");
fscanf (mioHashFile,"%d",&mnOverFlowRecords);
fseek (mioHashFile, mnHeaderSize, 0); //Skip past the CRLF at end of overflow counter
//int numHeadRec = mnOverFlowRecords/3;
/* sequentially print all active records */
//for(int i=0;i<(numHeadRec+mnOverFlowRecords);i++)
for(int i=0;i<20+mnOverFlowRecords;i++)
{
if ((fscanf(mioHashFile,"%d",nextIn)== -1) || (fscanf(mioHashFile,"%d",nextIn)== 0) ||
(fscanf(mioHashFile,"%d",nextIn)== 1))
{
fscanf(mioHashFile,"%d%s%s%f",&nDeleteSwitch,sSSN,sName,&nSalary);
//printf("%d",nDeleteSwitch);
if (nDeleteSwitch==0)printf("%-11s%-21s%-10.2f\n",sSSN,sName,nSalary); // wtf why this isn't printing
else if (nDeleteSwitch == -1) printf("there's a -1 on row: %d",i);
}
else {continue;};
}
fclose(mioHashFile);
printf("Print Table Complete\n");
条目:
0
所以它不会读到它,但它会读到这个:
0
Overflow page: 0 0 -1
-1 x x 0.00
-1 x x 0.00
0 x x 0.00
Overflow page: 1 0 -1
-1 x x 0.00
-1 x x 0.00
0 x x 0.00
Overflow page: 2 0 -1
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
Overflow page: 3 0 -1
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
Overflow page: 4 0 -1
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
Overflow page: 5 0 -1
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
Overflow page: 6 0 -1
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
Overflow page: 7 0 -1
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
Overflow page: 8 0 -1
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
Overflow page: 9 0 -1
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
在-1之前有一个空格,在0之前有2个空格。如代码所示,我正在尝试打印开头为0的任何内容,并跳过'header'行在每个哈希块的前面。当我试图强制它打印时(比如print&lt; 3)那么它就像垃圾符号一样出现。
它应该做的是打印所有在开头有 0
0 123 asd 789.00
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
0 345 zxc 234.00
-1 x x 0.00
-1 x x 0.00
-1 x x 0.00
并跳过标题的记录(因为它们在开头没有0
)。
答案 0 :(得分:1)
您提供的几乎所有细节似乎都不符合您所声明的打印出以零开头并且不打印其他行的行的目标。例如,以下程序打印出所有以零开头但没有其他行的行。
#include <stdio.h>
#include <stdlib.h>
#define BUF_SZ (512)
#define INFILE "datafile.txt"
int main(void) {
char buf[BUF_SZ] = {0};
FILE *fp;
long first;
char *endp;
/* Open input file successfully or bail */
fp = fopen(INFILE, "r");
if( fp == NULL ) {
fprintf(stderr, "Failed to open '%s'\n", INFILE);
exit(EXIT_FAILURE);
}
/* Read each line, convert beginning to long and print if it's 0 */
while( NULL!=fgets(buf, BUF_SZ, fp) && !feof(fp) ) {
first = strtol(buf, &endp, 10);
if( first==0L && endp!=buf ) {
fputs(buf, stdout);
}
}
fclose(fp);
return 0;
}
答案 1 :(得分:1)
鉴于声明:
char nextIn[3];
此代码错误:
if ((fscanf(mioHashFile,"%d",nextIn) == -1) || (fscanf(mioHashFile,"%d",nextIn) == 0) ||
(fscanf(mioHashFile,"%d",nextIn) == 1))
{
您传递的是包含三个字符的数组,并期望fscanf()
将其视为int
。你的条件也很奇怪。 EOF不保证是-1
(虽然我不记得它不是的系统)。在检测到EOF后再次尝试没有多大意义(没有其他活动来清除EOF标记)。
当我尝试这个
fscanf(mioHashFile,"%s",nextIn); if (strcmp(nextIn, '-1') == 0)
时,由于类型不兼容,它仍然会崩溃和灼伤。 @Emmet也在EOF上找到了我的错误(在该答案的代码中)。你会怎么做,仍然保持我正在尝试使用的scanf()
,printf()
格式?
这需要一些半实数编码。我使用fgets()
和sscanf()
而不是fscanf()
:
char line[4096];
int lineno = 0;
while (fgets(line, sizeof(line), mioHashFile) != 0)
{
if (++lineno == 1)
continue; // Skip the offset line
if (line[0] == 'O') // Overflow line - skip
continue;
if (sscanf(line, "%d %9s %20s %f", &nDeleteSwitch, sSSN, sName, &nSalary) != 4)
{
fprintf(stderr, "Failed to scan data from: %s", line);
continue;
}
if (nDeleteSwitch == 0)
printf("%-11s%-21s%-10.2f\n", sSSN, sName, nSalary);
else if (nDeleteSwitch == -1)
printf("there's a -1 on row: %d\n", lineno);
else
printf("The delete switch value is %d\n", nDeleteSwitch);
}
请注意,%s
会跳过前导空格,然后停止在下一个空格处进行扫描。