C# winform完成以下功能,

[复制链接]
查看11 | 回复3 | 2013-6-27 09:41:55 | 显示全部楼层 |阅读模式
using System.IO;public void GetLogContent(string fileName)
{
FileInfo file = new FileInfo(fileName);
string txtCon=null;
using (StreamReader sr = file.OpenText())
{
string strLog = "";
strLog = sr.ReadLine();
while (strLog!= ...
回复

使用道具 举报

千问 | 2013-6-27 09:41:55 | 显示全部楼层
private string ReadFile(string fileName){
string strContent = "";
if (!string.IsNullOrEmpty(fileName) && File.Exists(fileName))
{
try
...
回复

使用道具 举报

千问 | 2013-6-27 09:41:55 | 显示全部楼层
public void GetLogContent(string fileName){
string filePath = @"C:\read.txt"
textBox.Text = System.IO.File.ReadAllText(filePath, Encoding.Unicode);}...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行