gpt4 book ai didi

c++ - 字符串在转换为 c_str() 后变得乱七八糟

转载 作者:行者123 更新时间:2023-11-30 02:10:41 30 4
gpt4 key购买 nike

这是一项家庭作业,只为所有想知道的人准备。

我正在编写一个词汇翻译器(英语 -> 德语,反之亦然)并且应该将用户所做的一切保存到文件中。很简单。

这是代码:

std::string file_name(user_name + ".reg");
std::ifstream file(file_name.c_str(), std::ios::binary | std::ios::ate);
// At this point, we have already verified the file exists. This shouldn't ever throw!
// Possible scenario: user deletes file between calls.
assert( file.is_open() );

// Get the length of the file and reset the seek.
size_t length = file.tellg();
file.seekg(0, std::ios::beg);

// Create and write to the buffer.
char *buffer = new char[length];
file.read(buffer, length);
file.close();

// Find the last comma, after which comes the current dictionary.
std::string strBuffer = buffer;
size_t position = strBuffer.find_last_of(',') + 1;
curr_dict_ = strBuffer.substr(position);

// Start the trainer; import the dictionary.
trainer_.reset( new Trainer(curr_dict_.c_str()) );

显然,问题是应该存储我的字典值的 curr_dict_。例如,我的老师有一个名为 10WS_PG2_P4_de_en_gefuehle.txt 的字典文件。 Trainer 像这样导入字典文件的全部内容:

std::string s_word_de;
std::string s_word_en;
std::string s_discard;
std::string s_count;
int i_word;

std::ifstream in(dictionaryDescriptor);

if( in.is_open() )
{
getline(in, s_discard); // Discard first line.
while( in >> i_word &&
getline(in, s_word_de, '<') &&
getline(in, s_discard, '>') &&
getline(in, s_word_en, '(') &&
getline(in, s_count, ')') )
{
dict_.push_back(NumPair(s_word_de.c_str(), s_word_en.c_str(), Utility::lexical_cast<int, std::string>(s_count)));
}
}
else
std::cout << dictionaryDescriptor;

单行是这样写的

1             überglücklich <-> blissful                     (0) 

curr_dict_ 似乎可以正常导入,但是当输出它时,我在文件末尾得到了一大堆垃圾字符!

我什至使用了十六进制编辑器来确保包含字典的文件末尾没有多余的字符。它没有。

顶部代码正在读取字典的注册表文件:

基督教.reg

Christian,abc123,10WS_PG2_P4_de_en_gefuehle.txt

我做错了什么?

最佳答案

read 函数(如 file.read(buffer, length); 行)不会以空字符终止字符缓冲区。您需要手动执行此操作(再分配一个字符,并在 reading 之后将 nul 放在第 gcount 位置)。

关于c++ - 字符串在转换为 c_str() 后变得乱七八糟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4379518/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com