国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服務器之家 - 編程語言 - JAVA教程 - java文件輸出流寫文件的幾種方法

java文件輸出流寫文件的幾種方法

2019-11-18 14:37Java教程網 JAVA教程

這篇文章主要介紹了java文件輸出流寫文件的幾種方法,需要的朋友可以參考下

java文件輸出流是一種用于處理原始二進制數據的字節流類。為了將數據寫入到文件中,必須將數據轉換為字節,并保存到文件。

 

復制代碼代碼如下:


package com.yiibai.io;

 

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

public class WriteFileExample {
 public static void main(String[] args) {

  FileOutputStream fop = null;
  File file;
  String content = "This is the text content";

  try {

   file = new File("c:/newfile.txt");
   fop = new FileOutputStream(file);

   // if file doesnt exists, then create it
   if (!file.exists()) {
    file.createNewFile();
   }

   // get the content in bytes
   byte[] contentInBytes = content.getBytes();

   fop.write(contentInBytes);
   fop.flush();
   fop.close();

   System.out.println("Done");

  } catch (IOException e) {
   e.printStackTrace();
  } finally {
   try {
    if (fop != null) {
     fop.close();
    }
   } catch (IOException e) {
    e.printStackTrace();
   }
  }
 }
}
//更新的JDK7例如,使用新的“嘗試資源關閉”的方法來輕松處理文件。
package com.yiibai.io;

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

public class WriteFileExample {
 public static void main(String[] args) {

  File file = new File("c:/newfile.txt");
  String content = "This is the text content";

  try (FileOutputStream fop = new FileOutputStream(file)) {

   // if file doesn't exists, then create it
   if (!file.exists()) {
    file.createNewFile();
   }

   // get the content in bytes
   byte[] contentInBytes = content.getBytes();

   fop.write(contentInBytes);
   fop.flush();
   fop.close();

   System.out.println("Done");

  } catch (IOException e) {
   e.printStackTrace();
  }
 }
}

 

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 亚洲色图 偷拍自拍 | 天堂中文网 | 欧美日韩在线视频观看 | 国产毛片黄色片 | 欧美日韩综合在线 | 国产一区二区成人 | 午夜精品久久久久久久久 | 国产精品欧美一区二区三区不卡 | 午夜影视免费观看 | 在线观看黄色 | 免费看操片 | 欧美精产国品一二三区 | 播放毛片 | 婷婷色av | 亚洲乱码国产乱码精品精98午夜 | 青青草久久 | 国产精品视频导航 | 国产一区二区三区在线 | 亚洲国产精品一区 | 国产精品久久久久久亚洲调教 | 蜜桃视频网站入口 | 精品国产乱码久久久久久久 | 伊人操操 | 欧洲一区二区三区 | 99久久国产免费 | 欧美成人免费在线视频 | 欧美日韩成人在线视频 | 欧美福利 | 欧美日韩精品在线观看 | 91大全| 久久久久久久久久久久久久免费看 | 亚洲精品久久久 | 亚洲深深色噜噜狠狠网站 | 成人精品国产免费网站 | 这里只有精品免费 | 国产在线精品一区二区 | 国产一区二区三区在线 | 久久久久久综合 | 国产精品免费视频观看 | 日本激情综合网 | 日本理论在线 |