博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
stream was not readable.
阅读量:5947 次
发布时间:2019-06-19

本文共 830 字,大约阅读时间需要 2 分钟。

StreamWriter使用时的报错情况:

stream was not readable.

错误原因:

没有指定StreamWriter的写入文件

正确代码示例1:

byte[] businessDataByte = dh.downFile(dataActionUrl);logger.InfoFormat("{0}", businessDataByte.Length);StreamWriter sw = new StreamWriter("a.txt"));sw.Write(Encoding.UTF8.GetString(businessDataByte));sw.Flush();sw.Close();

示例2:

using System;using System.IO;using System.Text;namespace ConsoleApplication{    class Program    {        static void Main(string[] args)        {            string fileName = "test.txt";            string textToAdd = "Example text in file";            using (FileStream fs = new FileStream(fileName, FileMode.CreateNew))            {                using (StreamWriter writer = new StreamWriter(fs))                {                    writer.Write(textToAdd);                }            }                    }    }}

转载地址:http://umfxx.baihongyu.com/

你可能感兴趣的文章
org-capture 配置
查看>>
linux下lvs搭建负载均衡集群
查看>>
JMS 实例讲解
查看>>
求教:如何成为一个优秀的项目经理人
查看>>
shell 脚本--备份、还原mysql数据库
查看>>
JS脚本静态变量调用方法
查看>>
linux中cacti和nagios整合
查看>>
新调查结果表明:NoSQL采用呈上升趋势
查看>>
ASP.NET MVC测试方法与实战技巧
查看>>
Mysql慢查询
查看>>
传统线程机制之定时器的应用(TIMER,TIMERTASK)
查看>>
org.apache.hadoop.hive.contrib.serde2.RegexSerDe not found
查看>>
citrix客户端的配置和访问(六)
查看>>
Linux下搭建Ionic框架
查看>>
移动支付的基本要素
查看>>
云计算:大数据时代的系统工程(二)
查看>>
Hadoop、Spark、HBase与Redis的适用性讨论(二):HBase
查看>>
常见的数据库连接池
查看>>
K8S使用Ceph RBD作为后端存储
查看>>
Centos yum的配置与使用
查看>>