如何使用应用程序启动时的File.ReadAllText()保存和读取文本文件?

时间:2016-08-06 12:19:40

标签: c#

我正在应用程序启动时保存文本文件并从应用程序启动时读取此文本文件。

这不是在应用程序启动时保存我的文件,这段代码出了什么问题?

在应用程序启动代码中保存文本文件。

private void Savebutton1_Click(object sender, EventArgs e)
    {
       StreamWriter sw = new StreamWriter(Application.StartupPath + "Book.txt", true);
        string json = JsonConvert.SerializeObject(vals);

            sw.Write(json);
            MessageBox.Show("Book Saved Successfully", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);

    }

从应用程序启动代码加载文本文件。

 string path = Path.Combine(Application.StartupPath, "ChequeBook.txt");
            string textholder;
            try
            {
                // Use StreamReader to consume the entire text file.
                using (StreamReader reader = new StreamReader(path))
                {
                    MessageBox.Show("Reached Here");
                    textholder = reader.ReadToEnd();
                    MessageBox.Show("Reached Here - 2");
                }

                if (textholder == string.Empty) {

                    return;
                }


                // Deserialise it from Disk back to a Dictionary
                string jsonToRead = File.ReadAllText(textholder);

                List<KeyValuePair<int, string>> myDictionaryReconstructed =
                    JsonConvert.DeserializeObject<List<KeyValuePair<int, string>>>(jsonToRead);

1 个答案:

答案 0 :(得分:1)

我想保存&amp;使用File.CreateText方法在应用程序文件夹中写入文本文件。

找到第一个答案:

这将将文本文件写入并保存在应用程序文件夹中。

        using (StreamWriter sw = File.CreateText(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Book.txt")))
        {

            string json = JsonConvert.SerializeObject(vals);
            sw.Write(json);
        }
        MessageBox.Show("Book Saved Successfully", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);

我想从应用程序文件夹中读取文本文件。

这将从应用程序文件夹中读取文本文件的内容。

string jsonToRead = File.ReadAllText(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Book.txt"));