首页 > 代码库 > Android的FileOutputStream中向文本文件中写入换行符
Android的FileOutputStream中向文本文件中写入换行符
FileInputStream fileIn; FileOutputStream fileOut; File file=new File("D:/StreamContent.java");//任意文件路径 byte[] c=new byte[2]; c[0]=0x0d; c[1]=0x0a;//用于输入换行符的字节码 String t=new String(c);//将该字节码转化为字符串类型 String s="shskhdgkhskhgk;hdkshkg,"; s+=t+"sdfsdf"; buf=s.getBytes();//转换为Bit流 fileIn=new FileInputStream(file); count=buf.length; fileOut= new FileOutputStream("D:/FileOutputStreamTest.txt");//要写入的文件路径 fileOut.write(buf,0,count); count=fileIn.read(buf); fileOut.write(buf,0,count);
Android的FileOutputStream中向文本文件中写入换行符
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。