Fichier (settings.txt) à analyser :
FULLSCREEN=On
V_SYNC=On [no "\n" at the end of file]
Dans le cas où il n'y a pas d'ENTRÉE " \n "La sortie est :
MapKey= FULLSCREEN MapValue= On
MapKey= V_SYNC MapValue= Onřřřř
Avec ENTER " \n " à la fin de la sortie du fichier est correcte (sans " řřřř ") :
MapKey= FULLSCREEN MapValue= On
MapKey= V_SYNC MapValue= On
Comment modifier le programme pour qu'il fonctionne sans ajouter de nouvelle ligne à la fin du fichier ? Code :
#include<iostream>
#include<fstream>
#include<sstream>
#include<vector>
#include<cstdint>
#include<memory>
int main()
{
std::vector<std::pair<std::string, std::string>> container;
std::ifstream containerFile("settings.txt", std::ifstream::binary);
containerFile.seekg(0, containerFile.end);
std::uint64_t fileSize = containerFile.tellg();
containerFile.seekg(0);
std::unique_ptr<char> fileBuffer(new char[fileSize]);
containerFile.read(fileBuffer.get(), fileSize);
std::istringstream fileContent(fileBuffer.get());
std::string fileLine;
while (std::getline(fileContent, fileLine))
{
std::istringstream bufferLine(fileLine);
std::string option;
if (std::getline(bufferLine, option, '='))
{
std::string value;
if (std::getline(bufferLine, value))
{
container.emplace_back(make_pair(option, value));
}
}
}
for (auto &element : container)
{
std::cout << "MapKey= " << element.first << " MapValue= " << element.second << std::endl;
}
containerFile.close();
}