前天亟待对叁个文书实行数据的分割,因为数据量宏大,所以就悟出了经过写程序来拍卖。将代码贴出来以备未来使用。
static public string Read(string path)
{
StreamReader sr = new StreamReader(path,Encoding.Default);
String line;
StringBuilder sb=new StringBuilder();
while ((line = sr.ReadLine()) != null)
{
sb.AppendLine(line);
//读取文件的内容 放置于StringBuilder 中
}
return sb.ToString();
StreamReader sr = new StreamReader(path, Encoding.Default);
String line;
StringBuilder sb = new StringBuilder();
}
while ((line = sr.ReadLine()) != null)
{
sb.Append(line);
}
//然后将其装换为泛型对象
public static string ReadFile(string FilePath)
{
if (System.IO.File.Exists(FilePath))
{
try
{
StreamReader reader = new StreamReader(FilePath,
Encoding.GetEncoding(“gb2312”));//System.IO.File.OpenText(FilePath);
StringBuilder builder = new StringBuilder();
string str = “”;
string str2 = “”;
while ((str = reader.ReadLine()) != null)
{
builder.AppendLine(str );
}
str2 = builder.ToString();
reader.Close();
return str2;
}
catch
{
return “”;
}
}
return “”;
}
JavaScriptSerializer js = new JavaScriptSerializer();
Models.aa a = js.Deserialize<aa>(sb.ToString());
List<aaa> aa = a.dateils;
www.2979.com,public static bool SaveFile(string FilePath, string type, string
content)
金沙国际唯一官网网址,{
近年来亟待对二个文本举办数据的细分。string path = FilePath;
if (!File.Exists(path))
type = “NEW”;
try
{
StreamWriter writer;
if (type == “NEW”)
{
using (writer = new StreamWriter(FilePath, false,
Encoding.GetEncoding(“gb2312”)))//System.IO.File.CreateText(path))
{
writer.Write(content);
writer.Flush();
writer.Close();
return true;
}
}
if (type == “ADD”)
{
if (System.IO.File.Exists(path))
{
writer = new StreamWriter(path, true, Encoding.GetEncoding(“gb2312”));
writer.Write(content);
writer.Flush();
writer.Close();
return true;
}
return false;
}
return false;
}
catch
{
return false;
}
}
//然后在经过foreach来遍历泛型 一向达到内定数量的分组
文章中分组的数额为100
切记:供给在web.config设置保存的路线
public class FileHelper
{
public static string ReadFile(string path)
{
StreamReader sr = new StreamReader(path, Encoding.Default);
String line;
StringBuilder sb = new StringBuilder();
while ((line = sr.ReadLine()) != null)
{
sb.AppendLine(line);
}
return sb.ToString();
}
public static IEnumerable<string> ReadFileToEnumerable(string path)
{
StreamReader sr = new StreamReader(path, Encoding.Default);
String line;
while ((line = sr.ReadLine()) != null)
{
yield return line;
}
}
public static IList<T> ReadFileToList<T>(string[] path, Func<string, T> func)
{
var list = new List<T>();
foreach (var item in path)
{
list = list.Union(ReadFileToEnumerable(item).Select(func)).ToList();
}
return list;
}
public static bool AppendFile(string filePath, string type, string content)
{
try
{
if (System.IO.File.Exists(filePath))
{
var writer = new StreamWriter(filePath, true, Encoding.GetEncoding("gb2312"));
writer.Write(content);
writer.Flush();
writer.Close();
return true;
}
return false;
}
catch
{
return false;
}
}
public static bool CreateFile(string filePath, string type, string content)
{
try
{
StreamWriter writer;
using (writer = new StreamWriter(filePath, false, Encoding.GetEncoding("gb2312")))//System.IO.File.CreateText(path))
{
writer.Write(content);
writer.Flush();
writer.Close();
return true;
}
}
catch
{
return false;
}
}
}