FileWriter字符输出流
构造方法
1
|
public FileWriter(String fileName) throws IOException |
根据给定的文件名构造一个 FileWriter 对象。
fileName
- 一个字符串,表示与系统有关的文件名。
1
|
public FileWriter(String fileName, boolean append) throws IOException |
根据给定的文件名以及指示是否附加写入数据的 boolean 值来构造 FileWriter 对象。
fileName
- 一个字符串,表示与系统有关的文件名。
append
- 一个 boolean 值,如果为 true,则将数据写入文件末尾处,而不是写入文件开始处。
1
|
public FileWriter(File file) throws IOException |
根据给定的 File 对象构造一个 FileWriter 对象。
file
- 要写入数据的 File 对象。
常用方法
1
|
public void write( int c): |
写单个字符
1
|
public void write( char [] cbuf): |
写字符数组
1
|
public abstract void write( char [] cbuf, int off, int len): |
写字符数组的一部分
1
|
public void write(String str): |
写字符串
1
|
public void write(String str, int off, int len): |
写字符串的某一部分
1
|
public void flush() throws IOException |
刷新该流的缓冲。
1
|
public void close() throws IOException |
关闭此流,但要先刷新它
FileWriter和FileReader 的用法
java:IO流(readLine()和newLine()方法)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
package com.itcast.demo4; import java.io.*; public class Java_2 { public static void main(String args[]) { String ShowMes[] = { "在那山的那边海的那边有一群蓝精灵" , "它们活泼又聪明它们调皮又灵敏" , "它们自由自在生活在那绿色的大森林" , "它们善良勇敢相互都欢喜!" }; try { //*********Found******** FileWriter out = new FileWriter( "test.txt" ); BufferedWriter outBW = new BufferedWriter(out); for ( int i = 0 ; i < ShowMes.length; i++) { outBW.write(ShowMes[i]); outBW.newLine(); //跨平台的换行符 //outBW.write("\r\n");//只支持windows系统 } //*********Found******** outBW.close(); } catch (Exception e) { e.printStackTrace(); } try { //*********Found******** FileReader in = new FileReader( new File( "test.txt" )); BufferedReader inBR = new BufferedReader(in); String stext = null ; int j = 1 ; while ((stext = inBR.readLine()) != null ) { System.out.println( "第" + j + "行内容:" + stext); //*********Found******** j++; } inBR.close(); } catch (Exception e) { e.printStackTrace(); } } } |
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/scbiaosdo/article/details/80423516