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

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

csv - text turned into strange Chinese characters when trying to write to file C++

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

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...