0 0

读与写的问题.3

写完文件后,接着读文件readLine(),读出来是"".查看了文件内容写进去了,流也关闭了.请问下什么原.

问题补充:using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.IO;

namespace ADODataBase
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = null;
            SqlCommand cmd = null;
            SqlDataReader dr = null;
            string username=textBox1.Text;
            string password = textBox2.Text;
            string pathOne =@"c:\info\message.txt";
            StreamWriter sw = new StreamWriter(pathOne);
           
            try
            {
                con = new SqlConnection();
                con.ConnectionString = "server=localhost;user=sa;pwd=123456;database=usermanage";
                con.Open();     
                string sql = "select * from usertable where username='"+username+"' and password='"+password+"'";
                cmd = new SqlCommand(sql,con);              
                dr= cmd.ExecuteReader();
                sw.WriteLine(dr.FieldCount);                     //写入列的总数.
                if(dr.Read()){   
                    for (int i = 0; i<dr.FieldCount;i++)
                    {
                        sw.Write(dr.GetName(i)+":@");
                        if (i == 0)
                        {                          
                            sw.Write(dr.GetInt32(i).ToString());
                        }
                        else
                        {
                            sw.Write(dr.GetString(i));
                        }
                        sw.WriteLine();
                    }
                    Form2 form2 = new Form2();                   
                    form2.Show();                   
                }
                else
                {
                    MessageBox.Show("此查询没有结果集!!!");
                    MessageBox.Show("密码或帐号错误,请从新登入.");
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
                MessageBox.Show("登入失败!!!");
            }
            finally
            {
                sw.Flush();
                sw.Close();                                                         dr.Close();
                con.Close();
            }
        }
    }
}


问题补充:using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Data.SqlClient;

namespace ADODataBase
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

        private void Form2_Load(object sender, EventArgs e)
        {
            string field = null;
            string value = null;
            string columnCount = null;
            int i = 0;
            int j = 0;
            string pathTwo = @"c:\info\info.txt";
            string[] arrayName=null;
            string[] arrayValue=null;
           
            FileStream fs = new FileStream(pathTwo, FileMode.Open,FileAccess.Read,FileShare.ReadWrite);
            StreamReader sd = new StreamReader(fs,System.Text.Encoding.GetEncoding("UTF-8"));
            try
            {
                while (sd.Peek()>0)                          {                  
                    if (i == 0)
                    {
                        columnCount=sd.ReadLine();                                  //得到列的总数.
                        arrayName = new string[int.Parse(columnCount)];            //设定数组的大小.
                        arrayValue = new string[int.Parse(columnCount)];            //设定数组的大小.
                    }
                    else
                    {
                        field = sd.ReadLine().Trim();
                        string[] arr = field.Split(new char[] { '@' });            //写入的数据进行分割.
                        arrayName[j] = arr[0];                                     //把列名放进一个数组.
                        arrayValue[j] = arr[1];                                   //值放进一个数组.
                        j++;
                    }
                  
                    i++;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
                MessageBox.Show("读数据出现异常");
            }
            finally
            {              
                sd.Close();
                fs.Close();
            }
            for(int k=0;k<groupBox1.Controls.Count;k++)               //列名
            {
                Label lb=(Label)groupBox1.Controls[k];
                lb.Text=arrayName[k];
            }
            for(int l=0;l<groupBox2.Controls.Count;l++)             //值
            {
               TextBox tb=(TextBox)groupBox2.Controls[l];
                tb.Text=arrayValue[l];
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {

        }

        private void button4_Click(object sender, EventArgs e)
        {
            string id=textBox7.Text;
            string trueness = textBox8.Text;
            MessageBox.Show("id="+id);
            MessageBox.Show("truenessname="+trueness);
            SqlConnection con=null;
            SqlCommand cmd=null;
            SqlDataReader dr=null;
            try
            {
                con = new SqlConnection("server=localhost;user=sa;pwd=123456;database=usermanage");
                con.Open();
                cmd=new SqlCommand("select * from usertable where id="+int.Parse(id)+"and truenessname='"+trueness+"'",con);
                dr=cmd.ExecuteReader();
                //MessageBox.Show("dr.Read()="+dr.Read());
                if(dr.Read())
                {
                   
                }
                else
                {
                    MessageBox.Show("没有找到此查询条件的结果,请验证后在查询.");
                }
              
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
                MessageBox.Show("连接失败");
            }
            finally
            {
                dr.Close();
                con.Close();
               
            }
        }
    }
}


问题补充:第一行不是空字符串,是有字符的,写完之后马上接着读,能读到吗?这程序现在正在写.现在这代码读是换了一个文件路径读的.

问题补充:问题已解决.
2011年7月06日 07:01

1个答案 按时间排序 按投票排序

0 0

readLine是读第一行,是不是本来你的第一行就是个空串呢,最好贴代码看看。

2011年7月06日 09:26

相关推荐

Global site tag (gtag.js) - Google Analytics