写完文件后,接着读文件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();
}
}
}
}
问题补充:第一行不是空字符串,是有字符的,写完之后马上接着读,能读到吗?这程序现在正在写.现在这代码读是换了一个文件路径读的.
问题补充:问题已解决.
相关推荐
五年级语文下册词语盘点拼音读读写写与读读记记.doc
C++文件流操作的读与写,这里是作者初学的一些终结,希望各位海涵啊
本文将深入探讨基于深度学习理论的读后续写讲评在提升学生语言能力和思维能力方面的应用及其优势。 传统讲评方式的局限性在于,往往只注重学生分数的评定和简单的知识点记忆,而忽略了对学情的深度分析、学习内容的...
《语文读与写训练装置》是一款专为提升语文学习效果而设计的教学辅助设备。这款装置集成了现代化的技术手段,旨在帮助学生在阅读和写作方面取得显著进步。在深入理解其功能和应用之前,我们首先需要了解语文教育的...
第三周-第06章节-Python3.5-文件读与写详解3.avi
第三周-第04章节-Python3.5-文件读与写详解1.avi
第三周-第05章节-Python3.5-文件读与写详解2.avi
标题 "EJ1+CP1H无协议(Modbus-RTU)读PV写SP.rar" 暗示了这是一个关于使用Modbus-RTU协议与EJ1和CP1H系列PLC进行通信的教程或示例代码集合。描述中的 "MODBUS RTU通讯程序,通用串行口读写程序" 确认了这一点,说明...
代码实现功能,文件FileName(images.bmp)复制成文件out.dat.
综上所述,运用迁移原理,结合读与写的训练,能够在很大程度上帮助学生克服作文中的审题难、取材难以及表达难等问题。这不仅需要学生自身的努力,还需要教师的精心指导和支持。通过这样的综合训练,不仅能提高学生的...
浅谈小学语文教师创新型课堂的建立读与写-3页.pdf
C#串口的读与写操作 概述: C#串口操作是指使用C#语言对串口进行读写操作的过程。串口是一种常用的通信接口,广泛应用于工业自动化、机器人控制、医疗设备等领域。通过C#语言,可以轻松地对串口进行读写操作,实现...
1. 英语试题与教学:这个文档标题和描述揭示了这是一份针对高二学生的英语月考测试,特别关注了“读后续写”这一特定题型,这在英语教学中是提高学生阅读理解能力和创新写作能力的重要练习。 2. 读后续写技巧:读...
沪教版最新2021春二年级数学下册6.2《大数的读与写》练习题.pdf
【标题】和【描述】提到的是七年级上册语文第一单元的读读写写练习题,这是一份针对初一学生的学习资料,旨在帮助学生掌握和巩固课本中的基础词汇和发音。【标签】为“文档”,表明这是一个文本类的学习材料。 在...
1. 概述 2. 模块函数 3. 方言与格式参数
例如,在“读读写写”环节中,学生可以练习写“宽阔”、“薄雾”、“沸腾”等词语,这些词语与自然环境和动态场景紧密相关,有助于激发学生对自然美的感受力,并在书写中培养对语境的理解能力。 而“读读记记”部分...
XML文件的读写操作,可直接移植使用,指定文件路径和更改相应的类
二年级数学下册 大数的读与写教案2 沪教版 教案.doc
这篇文档是针对小学六年级下册语文学习的内容,包含了“读读记记”、“读读写写”和“日积月累”等板块,旨在帮助学生积累词汇、提高阅读理解和写作能力。以下是对这些知识点的详细说明: 1. **读读记记**:这部分...