zoukankan      html  css  js  c++  java
  • 使用字节缓冲在文件中 写内容



    import java.io.BufferedOutputStream;

    import java.io.FileOutputStream;
    import java.io.IOException;

      public class Buff2 {

     
            public static void main(String[] args) {


                BufferedOutputStream bos=null;


                try {


    //                使用字节缓冲在文件中写内容


                     bos=new BufferedOutputStream(new FileOutputStream("D:\IO\java.txt",true));


    //                     写入内容


                        bos.write(65);


    //                    写入字符串


                      byte []b="hello word http".getBytes();


                          bos.write(b);

        
    //                    截取写入内容


                        bos.write(b,1,3);
                
                
            } catch (Exception e) {

               e.printStackTrace();


            }finally{


                    if(bos!=null){


                          try {


                            bos.close();


                    } catch (IOException e) {


           
                        e.printStackTrace();


                    }
                }
            }

        }

    }

  • 相关阅读:
    且思且行
    Android切换页面效果的实现二:WebView+ViewPager
    Android切换页面效果的实现一:WebView+ViewFlipper
    一些值得关注的互联网相关的网站
    jQuery插件
    Javascript Error: 11233 Content-Length mismatch
    XML && Json
    static 静态块 构造块
    "师路南通”网站分析
    分析南通大学教务系统微信公众号优缺点
  • 原文地址:https://www.cnblogs.com/hph1728390/p/10601319.html
Copyright © 2011-2022 走看看