Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I compile my code all is good no errors but when I open the file that I am writing too I see that most of the text has been converted into strange Chinese looking characters.

#include <iostream>
#include <fstream>
#include <Windows.h>
#include <string>
#include <sstream>

using namespace std;


 int main()
 {
    string temp, line;

    fstream file("LogData.csv");
    fstream txtfile("temp.txt", ofstream::out, ofstream::trunc);

    while (getline(file, line, '
'))
    {
        txtfile << line;
    }

    file.close();
    txtfile.close();
}
question from:https://stackoverflow.com/questions/65931115/text-turned-into-strange-chinese-characters-when-trying-to-write-to-file-c

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
956 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...