Writing/Reading strings in binary file-C++(在二进制文件中写入/读取字符串-C++)
本文介绍了在二进制文件中写入/读取字符串-C++的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我搜索了类似的帖子,但找不到对我有帮助的帖子。
我正在尝试首先写入包含字符串长度的整数,然后将该字符串写入二进制文件。
但是,当我从二进制文件中读取数据时,我读取值为0的整数,而我的字符串包含垃圾。
例如,当我键入用户名‘asdfgh’和密码‘qwerty100’时 我的两个字符串长度都是0,0,然后从文件中读取垃圾信息。这是我将数据写入文件的方式。
std::fstream file;
file.open("filename",std::ios::out | std::ios::binary | std::ios::trunc );
Account x;
x.createAccount();
int usernameLength= x.getusername().size()+1; //+1 for null terminator
int passwordLength=x.getpassword().size()+1;
file.write(reinterpret_cast<const char *>(&usernameLength),sizeof(int));
file.write(x.getusername().c_str(),usernameLength);
file.write(reinterpret_cast<const char *>(&passwordLength),sizeof(int));
file.write(x.getpassword().c_str(),passwordLength);
file.close();
在下面的同一函数中,我读取数据
file.open("filename",std::ios::binary | std::ios::in );
char username[51];
char password[51];
char intBuffer[4];
file.read(intBuffer,sizeof(int));
file.read(username,atoi(intBuffer));
std::cout << atoi(intBuffer) << std::endl;
file.read(intBuffer,sizeof(int));
std::cout << atoi(intBuffer) << std::endl;
file.read(password,atoi(intBuffer));
std::cout << username << std::endl;
std::cout << password << std::endl;
file.close();
推荐答案
回读数据时,应执行以下操作:
int result;
file.read(reinterpret_cast<char*>(&result), sizeof(int));
这会将字节直接读取到result
的内存中,而不会隐式转换为int。这将还原最初写入文件的确切二进制模式,从而还原您的原始int
值。
这篇关于在二进制文件中写入/读取字符串-C++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:在二进制文件中写入/读取字符串-C++
基础教程推荐
猜你喜欢
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01