0

我目前正在尝试将输入ComboBox(从 Outlook 插件)中的 URL 写入 txt 文件,但作为我的初学者,我真的不知道如何去做。

无论如何,我没有任何可以帮助您的代码片段,所以我想我会保持简单,向您询问我可以在这件事上使用的一般方法。感谢您的所有帮助,谢谢。

4

2 回答 2

0

这是你想要的 ?

string path=@"C:\Hello.txt";
TextWriter tsw = new StreamWriter(path,true);

    //Writing selected item of combobox to the file.
    tsw.WriteLine(comboBox1.Items[this.comboBox1.SelectedIndex].ToString());


    //Close the file.
    tsw.Close();
于 2013-04-10T12:21:21.203 回答
0

尝试这个:

将组合项目添加到 aList并将它们写入文件使用File

List<string> lst = new List<string>();
foreach (var text in comboBox1.Items)
{
     lst.Add((string)text);
}
File.WriteAllLines(@"c:\file.txt", lst.ToArray());

使用TextWriter

 using (TextWriter TW = new StreamWriter(@"c:\file.txt", true))
            {
                foreach (var text in comboBox1.Items)
                {
                    TW.WriteLine();
                }
            }
于 2013-04-10T12:24:26.587 回答