• StreamReader 和 StreamWriter 简单调用


    /*              #########                       
                  ############                     
                  #############                    
                 ##  ###########                   
                ###  ###### #####                  
                ### #######   ####                 
               ###  ########## ####                
              ####  ########### ####               
             ####   ###########  #####             
            #####   ### ########   #####           
           #####   ###   ########   ######         
          ######   ###  ###########   ######       
         ######   #### ##############  ######      
        #######  #####################  ######     
        #######  ######################  ######    
       #######  ###### #################  ######   
       #######  ###### ###### #########   ######   
       #######    ##  ######   ######     ######   
       #######        ######    #####     #####    
        ######        #####     #####     ####     
         #####        ####      #####     ###      
          #####       ###        ###      #        
            ###       ###        ###              
             ##       ###        ###               
    __________#_______####_______####______________
        身是菩提树,心如明镜台,时时勤拂拭,勿使惹尘埃。
                    我们的未来没有BUG              
    * ==============================================================================
    * Filename: Text07
    * Created:  $time$
    * Author:   WYC
    * Purpose:  StreamReader 和 StreamWriter 简单调用
    * ==============================================================================
    */
    using System.Text;
    using System.IO;
    using UnityEngine;
    
    public class Text07 : MonoBehaviour {
    
    
        void Start() {
            //StreamReader();
            //StreamWriter();
            //StreamWriterApp();
        }
        /// <summary>
        /// 读取一个文本文件
        /// </summary>
        public void StreamReader(){
            using (StreamReader sr = new StreamReader(@"C:UsersAdministrator.PC-201709211725Desktop王.txt", Encoding.Default))
            {
                while (!sr.EndOfStream)
                {
                    //只读取第一行
                    print(sr.ReadLine());
                }
            }
        }
        /// <summary>
        /// 写入一个文本文件 (覆盖)
        /// </summary>
        public void StreamWriter()
        {
            using (StreamWriter sw = new StreamWriter(@"C:UsersAdministrator.PC-201709211725Desktop王.txt"))
            {
                sw.Write("我真帅");
                print("写入OK");
            }
        }
        /// <summary>
        /// 写入一个文本文件 (未覆盖)
        /// </summary>
        public void StreamWriterApp()
        {
            using (StreamWriter sw = new StreamWriter(@"C:UsersAdministrator.PC-201709211725Desktop王.txt",true))
            {
                sw.Write("你真帅");
                print("写入OK");
            }
        }
    }
    

      

  • 相关阅读:
    银联测试
    mysql 往表中某个字段的字符串后追加字符串
    jsp通过js往后端传文字时乱码问题的解决
    artTemplate 如何遍历数据
    Error:java: Annotation processing is not supported for module cycles. Please ensure that all modules from cycle [kstore_goods_platform,kstore_goods,kstore_custom] are excluded from annotation processi
    递归方式实现二分查找
    递归与二分查找
    python内置函数
    函数的四种传参方式
    python基础(四)
  • 原文地址:https://www.cnblogs.com/mclll520/p/8075253.html
Copyright © 2020-2023  润新知