码迷,mamicode.com
首页 > 其他好文 > 详细

Stream To String , String To Stream

时间:2014-08-11 14:58:22      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:blog   os   io   ar   div   new   log   ad   

        public static string StreamToString(Stream stream)
        {
            stream.Position = 0;
            using (StreamReader stremReader = new StreamReader(stream, Encoding.UTF8))
            {
                return stremReader.ReadToEnd();
            }
        }

        public static Stream StringToStream(string str)
        {
            byte[] strBytes = Encoding.UTF8.GetBytes(str);
            return new MemoryStream(strBytes);
        }

  

Stream To String , String To Stream,布布扣,bubuko.com

Stream To String , String To Stream

标签:blog   os   io   ar   div   new   log   ad   

原文地址:http://www.cnblogs.com/ericyi/p/3904604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!