zoukankan      html  css  js  c++  java
  • StreamReader实例

    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;

    /// <summary>
    /// file 的摘要说明
    /// </summary>

    public class file
    {
        
    public file()
        
    {
            
    //
            
    // TODO: 在此处添加构造函数逻辑
            
    //
        }

        
    static void Main()
        
    {
            StreamReader objreader 
    = new StreamReader("F:\\upfile\\t.txt");
            
    string sline="";
            ArrayList arrtext 
    = new ArrayList();
            
    while (sline != null)
            
    {
                sline 
    = objreader.ReadLine();
                
    if (sline != null)
                    arrtext.Add(sline);

            }
     objreader.Close();
            
    foreach(string ss in arrtext)
                Console.WriteLine(ss);
                Console.ReadLine();

        }

    }

    写文件
    using System;
    using System.IO;

    class Test 
    {
        
        
    public static void Main() 
        
    {
            
    string path = @"c:\temp\MyTest.txt";

            
    try 
            
    {
                
    if (File.Exists(path)) 
                
    {
                    File.Delete(path);
                }


                
    using (StreamWriter sw = new StreamWriter(path)) 
                
    {
                    sw.WriteLine(
    "This");
                    sw.WriteLine(
    "is some text");
                    sw.WriteLine(
    "to test");
                    sw.WriteLine(
    "Reading");
                }


                
    using (StreamReader sr = new StreamReader(path)) 
                
    {
                    
    //This allows you to do one Read operation.
                    Console.WriteLine(sr.ReadToEnd());
                }

            }
     
            
    catch (Exception e) 
            
    {
                Console.WriteLine(
    "The process failed: {0}", e.ToString());
            }

        }

    }

  • 相关阅读:
    JQuery实现页面跳转
    CSS中让背景图片居中且不平铺
    C#后台将string="23.00"转换成int类型
    BootStrap的一些基本语法
    CSS实现文字阴影的效果
    BootStrap自定义轮播图播放速度
    BootStrap 轮播插件(carousel)支持左右手势滑动的方法(三种)
    C#常用快捷键
    jQuery hover() 方法
    鼠标移动有尾巴
  • 原文地址:https://www.cnblogs.com/binlyzhuo/p/1218803.html
Copyright © 2011-2022 走看看