加入收藏 | 设为首页 | 会员中心 | 我要投稿 聊城站长网 (https://www.0635zz.com/)- 智能语音交互、行业智能、AI应用、云计算、5G!
当前位置: 首页 > 综合聚焦 > 编程要点 > 语言 > 正文

c# 读取文件内容存放至int数组 array.txt

发布时间:2023-04-12 14:44:38 所属栏目:语言 来源:
导读:代码如下:

using System;

using System.Data;

using System.Configuration;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;
代码如下:
 
using System;
 
using System.Data;
 
using System.Configuration;
 
using System.Web;
 
using System.Web.Security;
 
using System.Web.UI;
 
using System.Web.UI.WebControls;
 
using System.Web.UI.WebControls.WebParts;
 
using System.Web.UI.HtmlControls;
 
using System.Collections;
 
using System.IO;
 
using System.Text;
 
/// <summary>
 
/// Summary description for ReadFile
 
/// </summary>
 
public class ReadFile
 
{
 
public ReadFile()
 
{
 
//
 
// TODO: Add constructor logic here
 
//
 
}
 
public int[,] ReadFileToArray()
 
{
 
int[,] iret = null;
 
ArrayList alNumLine = getFileContent();
 
string[] strLineArr = null;
 
if (alNumLine.Count > 0)
 
{
 
strLineArr = Convert.ToString(alNumLine[0]).Trim(',').Split(',');
 
iret = new int[alNumLine.Count, strLineArr.Length];
 
for (int i = 0; i < alNumLine.Count; i++)
 
{
 
strLineArr = Convert.ToString(alNumLine[i]).Trim(',').Split(',');
 
for (int j = 0; j < strLineArr.Length; j++)
 
{
 
iret[i, j] = Convert.ToInt32(strLineArr[j]);
 
}
 
}
 
}
 
return iret;
 
}
 
public ArrayList getFileContent()
 
{
 
ArrayList alRet = new ArrayList();
 
string strFilePath = HttpContext.Current.Server.MapPath("~") + "/array.txt";
 
if (!File.Exists(strFilePath))
 
{
 
HttpContext.Current.Response.Write("文件[" + strFilePath + "]不存在。");
 
return alRet;
 
}
 
try
 
{
 
//读出一行文本,并临时存放在ArrayList中
 
StreamReader sr = new StreamReader(strFilePath, Encoding.GetEncoding("gb2312"));
 
string l;
 
while ((l = sr.ReadLine()) != null)
 
{
 
if (!string.IsNullOrEmpty(l.Trim()))
 
alRet.Add(l.Trim());
 
}
 
sr.Close();
 
}
 
catch (IOException ex)
 
{
 
HttpContext.Current.Response.Write("读文件出错!请检查文件是否正确。");
 
HttpContext.Current.Response.Write(ex.ToString());
 
}
 
return alRet;
 
}
 
}
 
 

(编辑:聊城站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!