您的位置:

java写入文件,java写入文件内容

本文目录一览:

Java的文件生成然后写入

创建文件

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

try{

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

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

filewrite.close();

}catch(IOException e);

Java读写文件的几种方法

java读取配置文件的几种方法如下:

方式一:采用ServletContext读取,读取配置文件的realpath,然后通过文件流读取出来。因为是用ServletContext读取文件路径,所以配置文件可以放入在web-info的classes目录中,也可以在应用层级及web-info的目录中。文件存放位置具体在eclipse工程中的表现是:可以放在src下面,也可放在web-info及webroot下面等。因为是读取出路径后,用文件流进行读取的,所以可以读取任意的配置文件包括xml和properties。缺点:不能在servlet外面应用读取配置信息。

方式二:采用ResourceBundle类读取配置信息,

优点是:可以以完全限定类名的方式加载资源后,直接的读取出来,且可以在非Web应用中读取资源文件。缺点:只能加载类classes下面的资源文件且只能读取.properties文件。

JAVA中如何将生成的数据写入到文件中?

package com.pig.database.file.txt;

import java.io.File;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.PrintStream;

/**

* @author zhuruhong

*

* 若要变更这个产生的类别注解的范本,请移至

* 视窗 喜好设定 Java 程式码产生 程式码和注解

*/

public class WriteTxtFileByName {

private String filename = null;

public WriteTxtFileByName(String filename) {

this.filename = filename;

}

public void writeFileByName(String content) {

File docFile = new File(filename);

try {

docFile.createNewFile();

FileOutputStream txtfile = new FileOutputStream(docFile);

PrintStream p = new PrintStream(txtfile);

p.println(content);

txtfile.close();

p.close();

} catch (IOException e) {

e.printStackTrace();

}

}

public static void main(String[] args) {

WriteTxtFileByName wfbn = new WriteTxtFileByName("title");

wfbn.writeFileByName("content");

}

}

给你一个实例。

java代码 如何向TXT文件写入内容?

  向txt文件写入内容基本思路就是获得一个file对象,新建一个txt文件,打开I/O操作流,使用写入方法进行读写内容,示例如下:

package common;

import java.io.*;

import java.util.ArrayList;

public class IOTest {

public static void main (String args[]) {

ReadDate();

WriteDate();

}

/**

* 读取数据

*/

public static void ReadDate() {

String url = “e:/2.txt”;

try {

FileReader read = new FileReader(new File(url));

StringBuffer sb = new StringBuffer();

char ch[] = new char[1024];

int d = read.read(ch);

while(d!=-1){

String str = new String(ch,0,d);

sb.append(str);

d = read.read(ch);

}

System.out.print(sb.toString());

} catch (FileNotFoundException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

/**

* 写入数据

*/

public static void WriteDate() {

try{

File file = new File(“D:/abc.txt”);

if (file.exists()) {

file.delete();

}

file.createNewFile();

BufferedWriter output = new BufferedWriter(new FileWriter(file));

ArrayList ResolveList = new ArrayList();

for (int i = 0; i  10; i++) {

ResolveList.add(Math.random()* 100);

}

for (int i=0 ;i 

output.write(String.valueOf(ResolveList.get(i)) + “\n”);

}

output.close();

} catch (Exception ex) {

System.out.println(ex);

}

}

}

原文出自【比特网】,转载请保留原文链接:

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文件

定义一个输出文件,然后输出就可以了,具体见下面的代码

 import java.io.*;

 public class StreamDemo

 {

  public static void main(String args[])

  {

   File f = new File("c:\\temp.txt") ;

   OutputStream out = null ;

   try 

   {

    out = new FileOutputStream(f) ;

   } 

   catch (FileNotFoundException e) 

   {

    e.printStackTrace();

   }

   // 将字符串转成字节数组

   byte b[] = "Hello World!!!".getBytes() ;

   try 

   {

    // 将byte数组写入到文件之中

    out.write(b) ;

   } 

   catch (IOException e1) 

   {

    e1.printStackTrace();

   }

   try 

   {

    out.close() ;

   } 

   catch (IOException e2) 

   {

    e2.printStackTrace();

   }

  

   // 以下为读文件操作

   InputStream in = null ;

   try 

   {

    in = new FileInputStream(f) ;

   } 

   catch (FileNotFoundException e3) 

   {

    e3.printStackTrace();

   }

   // 开辟一个空间用于接收文件读进来的数据

   byte b1[] = new byte[1024] ;

   int i = 0 ;

   try 

   {

   // 将b1的引用传递到read()方法之中,同时此方法返回读入数据的个数

    i = in.read(b1) ;

   } 

   catch (IOException e4) 

   {

    e4.printStackTrace();

   }

   try 

   {

    in.close() ;

   } 

   catch (IOException e5) 

   {

    e5.printStackTrace();

   }

   //将byte数组转换为字符串输出

   System.out.println(new String(b1,0,i)) ;

  }

 }