java文件的写入代码 java写入文本文件

java如何写入文件

package filewriter;  

创新互联主要从事成都做网站、网站制作、网页设计、企业做网站、公司建网站等业务。立足成都服务静安,10余年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:13518219792

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文件写入内容?

向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中如何向创建一个文件并且向其中写入内容

如下代码,向D盘temp文件夹下的 test.txt 文件中写入 Hello World!

import java.io.File;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.OutputStreamWriter;

public class App {

public static void main(String[] args) throws IOException {

File file = new File("d:\\temp\\test.txt");

try ( FileOutputStream outputStream = new FileOutputStream(file);

OutputStreamWriter streamWriter = new OutputStreamWriter(outputStream) ) {

streamWriter.write("Hello World!");

streamWriter.flush();

}

}

}

跪求Java中写入文件和从文件中读取数据的最佳的代码!

import java.io.BufferedReader;

import java.io.File;

import java.io.FileReader;

import java.io.FileWriter;

import java.io.IOException;

public class IOTest {

public static void main(String[] args) {

String str = "123\r\n456";

writeFile(str);//写

String str1 = readFile();//读

System.out.println(str1);

}

/**

* 传递写的内容

* @param str

*/

static void writeFile(String str) {

try {

File file = new File("d:\\file.txt");

if(file.exists()){//存在

file.delete();//删除再建

file.createNewFile();

}else{

file.createNewFile();//不存在直接创建

}

FileWriter fw = new FileWriter(file);//文件写IO

fw.write(str);

fw.flush();

fw.close();

} catch (IOException e) {

e.printStackTrace();

}

}

/**

* 返回读取的内容

* @return

*/

static String readFile() {

String str = "", temp = null;

try {

File file = new File("d:\\file.txt");

FileReader fr = new FileReader(file);

BufferedReader br = new BufferedReader(fr);//文件读IO

while((temp = br.readLine())!=null){//读到结束为止

str += (temp+"\n");

}

br.close();

fr.close();

} catch (IOException e) {

e.printStackTrace();

}

return str;

}

}

刚写的,够朋友好好学习一下啦,呵呵

多多看API,多多练习


当前标题:java文件的写入代码 java写入文本文件
文章起源:http://pwwzsj.com/article/hpsjio.html