python UnicodeEncodeError:“utf-8”编解码器无法解码字符“\ udea8”

时间:2018-04-18 14:35:54

标签: python jupyter-notebook

我在jupyter上运行笔记本时遇到了这个错误。

enter image description here

SaveFileDialog saveFiles = new SaveFileDialog();
        saveFiles.DefaultExt = "*.txt";
        saveFiles.Filter = "txt Files | *.txt";

        if (saveFiles.ShowDialog() == DialogResult.OK)
        {
            StreamWriter sw = File.CreateText(saveFiles.FileName);
            foreach (String s in richTextBox1.Lines)
            {
                sw.WriteLine(s);
            }
            sw.Flush();
            sw.Close();

我不确定这个错误是因为我无法在我的文件夹中写入文件。 我试图谷歌这个错误,但没有找到解决此错误的方法。 谢谢。

0 个答案:

没有答案