runliuv

runliuv@cnblogs

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2013年1月8日

摘要: 比如读取TXT中前100个字符。string fileFullName = txtPath.Text.Trim(); if (File.Exists(fileFullName)) { StreamReader srr = new StreamReader(fileFullName); char[] cc=new char[100]; srr.Read(cc,0,cc.Length); string tmp = new string(... 阅读全文
posted @ 2013-01-08 11:01 runliuv 阅读(246) 评论(0) 推荐(0) 编辑