美文网首页
2019-01-15 IO流之 字节流的写入

2019-01-15 IO流之 字节流的写入

作者: chenhbdl | 来源:发表于2019-01-15 14:11 被阅读0次
    public static void main(String[] args) {
            String path="F:/1.txt";
            FileOutputStream fo=null;
            try {
                fo=new FileOutputStream(path);
                String str="Vue.JS";
                byte[] data=str.getBytes();
                fo.write(data);
                fo.flush();
            } catch (Exception e) {
                if(fo!=null) {
                    try {
                        fo.close();
                    } catch (IOException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
                    }
                }
            }
        }
    

    相关文章

      网友评论

          本文标题:2019-01-15 IO流之 字节流的写入

          本文链接:https://www.haomeiwen.com/subject/rfcydqtx.html