激情久久久_欧美视频区_成人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();
  }
 }
}

 

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 国内精品国产三级国产a久久 | 在线观看国产www | 国产91在线高潮白浆在线观看 | 国产亚洲精品久久久久久久软件 | 黄色av电影在线播放 | 蜜桃网站在线观看 | 又黄又爽免费无遮挡在线观看 | 91福利在线观看 | 99最新网址 | 大片毛片| 97青青| 国产一区网址 | 国产一区视频观看 | 蜜桃网站在线 | 麻豆视频在线观看 | 亚洲精品无码不卡在线播放he | 久久精品亚洲精品国产欧美kt∨ | 日本网站在线看 | 欧美成人小视频 | 日本黄色不卡视频 | 国产a级久久 | 日本黄色免费片 | 草草久| 成熟女人特级毛片www免费 | 中日无线码1区 | 91短视频在线观看视频 | 美女性感毛片 | av免费在线播放 | 日韩在线黄 | 亚洲欧美日韩免费 | 国产精品一区免费在线观看 | 久久精精品 | 99re66热这里只有精品8 | 毛片视频网址 | 欧美视频网 | 久久成人激情视频 | 国产精品免费久久久久久 | 国产在线播放一区二区 | 久久精品视频1 | 午夜亚洲视频 | 久久久久久久久成人 |