关于如何读取数据表和输出数据表(把数据表的内容输出到txt文件) 请给出可用代码及详细注释
用MicrosoftVisualstudio2008(不能改别的)语言C++目前情况是我把数据表已经导入进去调试结果如图:我需要两个控件的代码:1)刷新就是再读取下数据表...
用Microsoft Visual studio2008(不能改别的)
语言C++
目前情况是我把数据表已经导入进去调试结果如图:
我需要两个控件的代码:1)刷新就是再读取下数据表并输出到界面的表里;
2)生成就是把界面里表的内容输出到一个txt文件。 展开
语言C++
目前情况是我把数据表已经导入进去调试结果如图:
我需要两个控件的代码:1)刷新就是再读取下数据表并输出到界面的表里;
2)生成就是把界面里表的内容输出到一个txt文件。 展开
2011-05-06
展开全部
以下是你所需要的代码,最重要的是string 转byte的部分
EmailList.txt为 txt文件
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
StreamReader sr = new StreamReader("EmailList.txt");
string value = sr.ReadToEnd();
string[] valueList = value.Split(new string[],StringSplitOptions.RemoveEmptyEntries);
if(valueList!=null)
{
byte[]byteList = new byte[valueList.Length];
int i = 0;
foreach (string charString in valueList)
{
string hexString = charString.Replace("0x","");
byteList[i] = byte.Parse(hexString, System.Globalization.NumberStyles.AllowHexSpecifier);
i++;
}
}
}
}
}
另外,虚机团上产品团购,超级便宜
EmailList.txt为 txt文件
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
StreamReader sr = new StreamReader("EmailList.txt");
string value = sr.ReadToEnd();
string[] valueList = value.Split(new string[],StringSplitOptions.RemoveEmptyEntries);
if(valueList!=null)
{
byte[]byteList = new byte[valueList.Length];
int i = 0;
foreach (string charString in valueList)
{
string hexString = charString.Replace("0x","");
byteList[i] = byte.Parse(hexString, System.Globalization.NumberStyles.AllowHexSpecifier);
i++;
}
}
}
}
}
另外,虚机团上产品团购,超级便宜
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询