[linux系统编程]写入文件里的一定是字符串吗
2022/2/12 7:14:58
本文主要是介绍[linux系统编程]写入文件里的一定是字符串吗,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
文章目录
- 一、写一个整形数到文件
- 二、写一个结构体到文件
- 二、写一个结构体数组到文件
一、写一个整形数到文件
//Test6.c #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include<stdio.h> #include<string.h> int main() { int fd; int data1 = 100; int data2 = 0; fd = open("./file",O_RDWR|O_CREAT); int n_write = write(fd,&data1,sizeof(int)); lseek(fd,0,SEEK_SET); //使光标移到开头 int n_read = read(fd,&data2,sizeof(int)); printf("read %d \n",data2); close(fd); return 0; } ~
输出结果:
二、写一个结构体到文件
Test7.c //Test4.c #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include<stdio.h> #include<string.h> struct Test { int a; char c; }; int main() { int fd; struct Test data1 = {100,'a'}; struct Test data2; fd = open("./file",O_RDWR|O_CREAT|O_TRUNC,0600); int n_write = write(fd,&data1,sizeof(struct Test)); lseek(fd,0,SEEK_SET); int n_read = read(fd,&data2,sizeof(struct Test)); printf("read %d,%c \n",data2.a,data2.c); close(fd); return 0; } ~
输出结果:
二、写一个结构体数组到文件
//Test8.c #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include<stdio.h> #include<string.h> struct Test { int a; char *c; }; int main() { int fd; struct Test data1[2] = {{666,"I will be successful"},{888,"We can do it" }}; struct Test data2[2]; fd = open("./file",O_RDWR|O_CREAT|O_TRUNC,0600); int n_write = write(fd,&data1,sizeof(struct Test)*2); lseek(fd,0,SEEK_SET); int n_read = read(fd,&data2,sizeof(struct Test)*2); printf("read %d,%s\n",data2[0].a,data2[0].c); printf("read %d,%s\n",data2[1].a,data2[1].c); close(fd); return 0; } ~
输出结果:
这篇关于[linux系统编程]写入文件里的一定是字符串吗的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法