您的位置:

java文件写入,java文件写入不覆盖

本文目录一览:

Java的文件生成然后写入

创建文件

new File(文件路径).createNewFile();这是写入文件

try{

FileOutputStream filewrite = new FileOutputStream(文件路径); //这个要捕捉异常

filewrite.write(要写入的数据byte[]);

filewrite.close();

}catch(IOException e);

java如何文件里写数据

import java.io.File ;

import java.io.OutputStream ;

import java.io.FileOutputStream ;

public class OutputStreamDemo01{

public static void main(String args[]) throws Exception{ // 异常抛出,不

处理

// 第1步、使用File类找到一个文件

File f= new File("d:" + File.separator + "test.txt") ; // 声明File对象

// 第2步、通过子类实例化父类对象

OutputStream out = null ; // 准备好一个输出的对象

out = new FileOutputStream(f) ; // 通过对象多态性,进行实例化

// 第3步、进行写操作

String str = "Hello World!!!" ; // 准备一个字符串

byte b[] = str.getBytes() ; // 只能输出byte数组,所

以将字符串变为byte数组

out.write(b) ; // 将内容输出,

保存文件

// 第4步、关闭输出流

out.close() ; // 关闭输出流

}

};

--如果文件不存在,则会自动创建一个文件

import java.io.File ;

import java.io.OutputStream ;

import java.io.FileOutputStream ;

public class OutputStreamDemo02{

public static void main(String args[]) throws Exception{ // 异常抛出,不处理

// 第1步、使用File类找到一个文件

File f= new File("d:" + File.separator + "test.txt") ; // 声明File对象

// 第2步、通过子类实例化父类对象

OutputStream out = null ; // 准备好一个输出的对象

out = new FileOutputStream(f) ; // 通过对象多态性,进行实例化

// 第3步、进行写操作

String str = "Hello World!!!" ; // 准备一个字符串

byte b[] = str.getBytes() ; // 只能输出byte数组,所以将字符串变为byte数组

for(int i=0;ib.length;i++){ // 采用循环方式写入

out.write(b[i]) ; // 每次只写入一个内容

}

// 第4步、关闭输出流

out.close() ; // 关闭输出流

}

};

--write(int i)方法

import java.io.File ;

import java.io.OutputStream ;

import java.io.FileOutputStream ;

public class OutputStreamDemo03{

public static void main(String args[]) throws Exception{ // 异常抛出,不

处理

// 第1步、使用File类找到一个文件

File f= new File("d:" + File.separator + "test.txt") ; // 声明File对象

// 第2步、通过子类实例化父类对象

OutputStream out = null ; // 准备好一个输出的对象

out = new FileOutputStream(f,true) ; // 此处表示在文件末尾追加内容

// 第3步、进行写操作

String str = "Hello World!!!" ; // 准备一个字符串

byte b[] = str.getBytes() ; // 只能输出byte数组,所

以将字符串变为byte数组

for(int i=0;ib.length;i++){ // 采用循环方式写入

out.write(b[i]) ; // 每次只写入一个内容

}

// 第4步、关闭输出流

out.close() ; // 关闭输出流

}

};

--追加但是没有换行

import java.io.File ;

import java.io.OutputStream ;

import java.io.FileOutputStream ;

public class OutputStreamDemo04{

public static void main(String args[]) throws Exception{ // 异常抛出,不处理

// 第1步、使用File类找到一个文件

File f= new File("d:" + File.separator + "test.txt") ; // 声明File对象

// 第2步、通过子类实例化父类对象

OutputStream out = null ; // 准备好一个输出的对象

out = new FileOutputStream(f,true) ; // 此处表示在文件末尾追加内容

// 第3步、进行写操作

String str = "\r\nHello World!!!" ; // 准备一个字符串

byte b[] = str.getBytes() ; // 只能输出byte数组,所以将字符串变为byte数组

for(int i=0;ib.length;i++){ // 采用循环方式写入

out.write(b[i]) ; // 每次只写入一个内容

}

// 第4步、关闭输出流

out.close() ; // 关闭输出流

}

};

--有换行操作"\r\n"

java如何写入文件

package filewriter;  

  

import java.io.FileWriter;  

import java.io.IOException;  

  

public class IOExceptionDemo {  

  

    private static final String LINE_SEPARATOR = System.getProperty("line.separator");  

    public static void main(String[] args) {  

  

        FileWriter fw = null;  

        try {  

            fw = new FileWriter("k:\\Demo.txt", true);  

            fw.write("hello" + LINE_SEPARATOR + "world!");  

        } catch (Exception e) {  

            System.out.println(e.toString());  

        } finally {  

            if (fw != null)  

                try {  

                    fw.close();  

                } catch (IOException e) {  

                    throw new RuntimeException("关闭失败!");  

                }  

        }  

    }  

}

java如何从数据库读取数据并写入txt文件?

写Java程序时经常碰到要读如txt或写入txt文件的情况,但是由于要定义好多变量,经常记不住,每次都要查,特此整理一下,简单易用,方便好懂!

[java] view plain copy

package edu.thu.keyword.test;  

  

import java.io.File;  

import java.io.InputStreamReader;  

import java.io.BufferedReader;  

import java.io.BufferedWriter;  

import java.io.FileInputStream;  

import java.io.FileWriter;  

  

public class cin_txt {  

    static void main(String args[]) {  

        try { // 防止文件建立或读取失败,用catch捕捉错误并打印,也可以throw  

  

            /* 读入TXT文件 */  

            String pathname = "D:\\twitter\\13_9_6\\dataset\\en\\input.txt"; // 绝对路径或相对路径都可以,这里是绝对路径,写入文件时演示相对路径  

            File filename = new File(pathname); // 要读取以上路径的input。txt文件  

            InputStreamReader reader = new InputStreamReader(  

                    new FileInputStream(filename)); // 建立一个输入流对象reader  

            BufferedReader br = new BufferedReader(reader); // 建立一个对象,它把文件内容转成计算机能读懂的语言  

            String line = "";  

            line = br.readLine();  

            while (line != null) {  

                line = br.readLine(); // 一次读入一行数据  

            }  

  

            /* 写入Txt文件 */  

            File writename = new File(".\\result\\en\\output.txt"); // 相对路径,如果没有则要建立一个新的output。txt文件  

            writename.createNewFile(); // 创建新文件  

            BufferedWriter out = new BufferedWriter(new FileWriter(writename));  

            out.write("我会写入文件啦\r\n"); // \r\n即为换行  

            out.flush(); // 把缓存区内容压入文件  

            out.close(); // 最后记得关闭文件  

  

        } catch (Exception e) {  

            e.printStackTrace();  

        }  

    }  

}