广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 计算机教程 > 正文

Java文件输出流写文件的方法

作者:adminjiang发布时间:2021-07-08分类:计算机教程浏览:672


导读:java文件输出流是一种用于处理原始二进制数据的字节流类。为了将数据写入到文件中,必须将数据转换为字节,并保存到文件。package com.yiibai.io;im...

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();
  }
 }
}

广州北大青鸟依托北京大学雄厚资源,是北大青鸟华南地区就业示范校区,学校提供学历+技能+就业服务,主要开设热门课程java培训,UI设计培训,PHP培训,Web前端培训,软件开发编程培训等全程项目实战,免费就业推荐等,详情请点击右边的咨讯框咨询在线的老师,同时还可以获取免费的试听课程,欢迎咨询哦!!!



计算机教程排行
标签列表
网站分类
文章归档
最近发表