C++ std::ofstream 和 std::ifstream 和 文件操作
1. 简介
C++中对文件进行读写的。
2. 使用Demo
#include <iostream> #include <fstream> #include <string> #include <string.h> using namespace std; static constexpr char FILE_PATH[] = "1.txt"; int std_ofstream_test(void) { int tid = 1122; std::string path = "1.txt"; std::string s_val = "/proc/" + std::to_string(tid) + "/comm"; std::ofstream out(path.c_str()); if (!out) { cout << "error" << endl; return -1; } out.write(s_val.c_str(), s_val.length()); out.close(); return 0; } int std_ifstream_test(void) { std::string line; char *buf = new char[64]; strcpy(buf, FILE_PATH); std::ifstream in(buf); if (!in) { cout << "error" << endl; delete []buf; return -1; } getline(in, line); cout << line << endl; in.close(); delete []buf; return 0; } int main() { std_ofstream_test(); std_ifstream_test(); return 0; } /* $ g++ -std=c++11 file_write.cpp -o pp $ ./pp /proc/1122/comm $ cat 1.txt /proc/1122/comm */
3. C++11写文件
#include <iostream> #include <fstream> bool file_write_test() { int tid = 1234; //gettid(); int val = 119; std::string s_path = "test.txt"; std::string s_val = "hello " + std::to_string(tid) + " " + std::to_string(val); std::ofstream out(s_path.c_str()); if (!out) { return false; } out.write(s_val.c_str(), s_val.length()); out.close(); return true; } int main() { file_write_test(); return 0; } /* $ g++ file_rw.cpp -o pp -std=c++11 $ cat test.txt hello 1234 119 */
优秀博文:
如何使用c++中file stream:https://www.jianshu.com/p/e9fdc4cd3e0f
posted on 2022-07-05 23:39 Hello-World3 阅读(2252) 评论(0) 编辑 收藏 举报
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
2017-07-05 gtk_init()