INI文件
http://www.google.com/search?q=c%23%E8%AF%BB%E5%8F%96ini%E6%96%87%E4%BB%B6&hl=zh-CN&newwindow=1&lr=&aq=f&aqi=g1&aql=&oq=&gs_rfai=&nxpt=10.2053083358739177280368
使用FileStream类即可
FileStream filestream = new FileStream(m_filepath, FileMode.Open, FileAccess.Read);
StreamReader objStreamReader = new StreamReader(filestream);
while (objStreamReader.Peek()>=0)
{
string sLine = objStreamReader.ReadLine();//读取一行
//可以将内容读到 ArrayList 中。
}
objStreamReader.Close();
filestream.Close();
下面是插入到数据库的方法
SqlConnection conn = newSqlConnection("server=localhost;database=shop;uid=sa;pwd=sa;");
conn.Open();
string insert = "insert into login(username,email,password,password1,beizhu,xingming,dizhi,dianhua) values('" + people.Text + "','" + email.Text + "','" + pwd.Text + "','" + pwd1.Text + "','" + beizhu.Text + "','" + name.Text + "','" + address.Text + "','" + phone.Text + "')";
SqlCommand cmd = new SqlCommand(insert, conn);
try
{
cmd.ExecuteNonQuery();
}
catch (SqlException ee)
{
ee.Errors.ToString();
}
finally
{
cmd.Dispose();
conn.Close();
}
1、要读取文件,使用System.IO空间下面的类
2、要写数据库,使用System.Data和System.Data.SqlClient下面的类
3、结合两个类就可以乐,一边读,一边写,或者一次性读到内存,然后写到数据库
同意楼上