//使用gets函數(shù)從標(biāo)準(zhǔn)輸入(鍵盤)獲得一個以回車換行為結(jié)束的字符串,可以帶空格
//運行時候屏幕會提示輸入字符處,以回車結(jié)尾
//需要注意的是待輸入的字符串存放在writebuf中,不能超過30字節(jié)并且不會帶回車換行
#include
#include
#include
int main(int argc,char *argv[])
{
int fd; //文件描述符
int temp; //臨時變量
char writebuf[30]; //用于存放寫入字符串
if(argc != 2) //如果參考字符串錯誤
{
printf("Plz input the correct file name as 'exam307WriteFun filename'\n");
//輸出提示字符串
return 1;
}
else
{
fd = open(*(argv + 1),O_RDWR|O_CREAT,S_IRWXU);
//打開文件,如果沒有則創(chuàng)建
}
printf("The File Descriptor is %d\n",fd); //打印文件描述符
printf("Plz input the strings and use Enter as the end!\n");
gets(writebuf); //將終端輸入的數(shù)據(jù)寫入文件
temp = write(fd,writebuf,strlen(writebuf)); //使用文件描述符調(diào)用文件
printf("The input length is %d\n",temp);
close(fd);
return 0;
}
網(wǎng)站欄目:[Linux文件]將用戶輸入的字符串寫入文件實例
分享路徑:
http://weahome.cn/article/jhgidh.html