c# 读入文本文件实用代码

 /// <summary>
        /// 读入文件文本
        /// </summary>
        /// <param name="txtfile">文件名</param>
        /// <returns></returns>
        public string Read(string txtfile)
        {
            //文件路径
            string filePath = System.AppDomain.CurrentDomain.BaseDirectory + txtfile;
            string str = "";
            try
            {
                if (File.Exists(filePath))
                {
                    str = File.ReadAllText(filePath);
                    // byte[] mybyte = Encoding.UTF8.GetBytes(textBox1.Text);
                    //textBox1.Text = Encoding.UTF8.GetString(mybyte);
                }
            }
            catch (Exception ex)
            {
                // MessageBox.Show(ex.Message);
            }
            return str;
        }

 

posted @ 2020-08-20 10:46  學海無邊  阅读(87)  评论(0编辑  收藏  举报