所以我想从数据库中创建一个文本(如日志文件)。每个文本代表用户的记录。 显然,每个记录根据数据库具有不同的名称。 我想知道如何在创建文本文件时将字符串变量放在doubleqoute中。
public static void createLog()
{
MySqlConnection con = new MySqlConnection();
con.ConnectionString = "SERVER=localhost;DATABASE=s_project;UID=root;PASSWORD='';";SELECT
con.Open();
MySqlCommand thiscommand = con.CreateCommand();
thiscommand.CommandText = "SELECT user_name FROM user_info";
MySqlDataReader read = thiscommand.ExecuteReader();
while (read.Read())
{
string user_name;
user_name = read.GetString("user_name");
StreamWriter SW;
SW = File.CreateText("c:\\MyTextFile.txt"); //what should I put instead of MyTextFile if I would like it to be the variable user_name?
}
con.Close();
}
答案 0 :(得分:2)
您可以使用+(string concat)运算符。
SW = File.CreateText("c:\\" + user_name + ".txt");
答案 1 :(得分:1)
String.Format
也可以使用:
SW = File.CreateText(String.Format("c:\\{0}.txt", user_name));
它可以显示更明确的意图。
答案 2 :(得分:0)
使用+符号
SW = File.CreateText(@"C:\" + user_name + ".txt");