我正在尝试使用C中的读取功能。 (这个功能: http://pubs.opengroup.org/onlinepubs/009695399/functions/read.html)。 当我从包含相同内容('H')的不同文件中读取时。 调用读取函数后缓冲区不相等,但当我尝试以%c格式打印时,两者都打印“H”(正确的输出)。
这是我的代码:
#include <stdio.h>
#include <sys/fcntl.h>
#include <errno.h>
#include<stdlib.h>
#include<sys/types.h>
#include<unistd.h>
#include<stdio.h>
/* #DEFINES */
#define ADD1 "text1.txt"
#define ADD2 "text2.txt"
#define SIZE 1
int main()
{
// Initializing
int fdin1=0,fdin2=0;
int r1=1,r2=1;
unsigned char * buff1[SIZE+1];
unsigned char * buff2[SIZE+1];
fdin1 = open(ADD1,O_RDONLY);
if (fdin1 < 0) /* means file open did not take place */
{
perror("after open "); /* text explaining why */
exit(-1);
}
fdin2 = open(ADD2,O_RDONLY);
if (fdin2 < 0) /* means file open did not take place */
{
perror("after open "); /* text explaining why */
exit(-1);
}
// Reading the bytes
r1 = read(fdin1,buff1,SIZE);
r2 = read(fdin2,buff2,SIZE);
// after this buff1[0] and buff2[0] does not contain the same value!
// But, both r1 and r2 equals to 1.
printf("%c\n",buff1[0]);
printf("%c\n",buff2[0]);
// It prints the correct output (both H)
close(fdin1);
close(fdin2);
return 0;
}
答案 0 :(得分:3)
将缓冲区定义为unsigned char buff1[SIZE+1]
和unsigned char buff2[SIZE+1]
。没有必要定义指针数组。顺便说一下,没有必要分配SIZE + 1
个字节,因为read
最后没有添加零字节。当你说'#34;缓冲区是X字节&#34;它是X字节。更好地使用read(fdin1, buff1, sizeof buff1)
。