admin 管理员组文章数量: 887021
2024年1月10日发(作者:自创网站免费)
java读取文件方法大全
一、多种方式读文件内容。
1、按字节读取文件内容
2、按字符读取文件内容
3、按行读取文件内容
4、随机读取文件内容
Java代码
1. import edReader;
2. import ;
3. import putStream;
4. import ader;
5. import ption;
6. import tream;
7. import treamReader;
8. import AccessFile;
9. import ;
10.
11. public class ReadFromFile {
12. /**
13. * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。
14. *
15. * @param fileName
16. * 文件的名
17. */
18. public static void readFileByBytes(String fileName) {
19. File file = new File(fileName);
20. InputStream in = null;
21. try {
22. n("以字节为单位读取文件内容,一次读一个字节:");
23. // 一次读一个字节
24. in = new FileInputStream(file);
25. int tempbyte;
26. while ((tempbyte = ()) != -1) {
27. (tempbyte);
28. }
29. ();
30. } catch (IOException e) {
31. tackTrace();
32. return;
33. }
34. try {
35. n("以字节为单位读取文件内容,一次读多个字节:");
36. // 一次读多个字节
37. byte[] tempbytes = new byte[100];
38. int byteread = 0;
39. in = new FileInputStream(fileName);
40. ailableBytes(in);
41. // 读入多个字节到字节数组中,byteread为一次读入的字节数
42. while ((byteread = (tempbytes)) != -1) {
43. (tempbytes, 0, byteread);
44. }
45. } catch (Exception e1) {
46. tackTrace();
47. } finally {
48. if (in != null) {
49. try {
50. ();
51. } catch (IOException e1) {
52. }
53. }
54. }
55. }
56.
57. /**
58. * 以字符为单位读取文件,常用于读文本,数字等类型的文件
59. *
60. * @param fileName
61. * 文件名
62. */
63. public static void readFileByChars(String fileName) {
64. File file = new File(fileName);
65. Reader reader = null;
66. try {
67. n("以字符为单位读取文件内容,一次读一个字节:");
68. // 一次读一个字符
69. reader = new InputStreamReader(new FileInputStream(file));
70. int tempchar;
71. while ((tempchar = ()) != -1) {
72. // 对于windows下,rn这两个字符在一起时,表示一个换行。
73. // 但如果这两个字符分开显示时,会换两次行。
74. // 因此,屏蔽掉r,或者屏蔽n。否则,将会多出很多空行。
75. if (((char) tempchar) != 'r') {
76. ((char) tempchar);
77. }
78. }
79. ();
80. } catch (Exception e) {
81. tackTrace();
82. }
83. try {
84. n("以字符为单位读取文件内容,一次读多个字节:");
85. // 一次读多个字符
86. char[] tempchars = new char[30];
87. int charread = 0;
88. reader = new InputStreamReader(new FileInputStream(fileName));
89. // 读入多个字符到字符数组中,charread为一次读取字符数
90. while ((charread = (tempchars)) != -1) {
91. // 同样屏蔽掉r不显示
92. if ((charread == )
93. && (tempchars[ - 1] != 'r')) {
94. (tempchars);
95. } else {
96. for (int i = 0; i < charread; i++) {
97. if (tempchars[i] == 'r') {
98. continue;
99. } else {
100. (tempchars[i]);
101. }
102. }
103. }
104. }
105.
106. } catch (Exception e1) {
107. tackTrace();
108. } finally {
109. if (reader != null) {
110. try {
111. ();
112. } catch (IOException e1) {
113. }
114. }
115. }
116. }
117.
118. /**
119. * 以行为单位读取文件,常用于读面向行的格式化文件
120. *
121. * @param fileName
122. * 文件名
123. */
124. public static void readFileByLines(String fileName) {
125. File file = new File(fileName);
126. BufferedReader reader = null;
127. try {
128. n("以行为单位读取文件内容,一次读一整行:");
129. reader = new BufferedReader(new FileReader(file));
130. String tempString = null;
131. int line = 1;
132. // 一次读入一行,直到读入null为文件结束
133. while ((tempString = ne()) != null) {
134. // 显示行号
135. n("line " + line + ": " + tempString);
136. line++;
137. }
138. ();
139. } catch (IOException e) {
140. tackTrace();
141. } finally {
142. if (reader != null) {
143. try {
144. ();
145. } catch (IOException e1) {
146. }
147. }
148. }
149. }
150.
151. /**
152. * 随机读取文件内容
153. *
154. * @param fileName
155. * 文件名
156. */
157. public static void readFileByRandomAccess(String fileName) {
158. RandomAccessFile randomFile = null;
159. try {
160. n("随机读取一段文件内容:");
161. // 打开一个随机访问文件流,按只读方式
162. randomFile = new RandomAccessFile(fileName, "r");
163. // 文件长度,字节数
164. long fileLength = ();
165. // 读文件的起始位置
166. int beginIndex = (fileLength > 4) ? 4 : 0;
167. // 将读文件的开始位置移到beginIndex位置。
168. (beginIndex);
169. byte[] bytes = new byte[10];
170. int byteread = 0;
171. // 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。
172. // 将一次读取的字节数赋给byteread
173. while ((byteread = (bytes)) != -1) {
174. (bytes, 0, byteread);
175. }
176. } catch (IOException e) {
177. tackTrace();
178. } finally {
179. if (randomFile != null) {
180. try {
181. ();
182. } catch (IOException e1) {
183. }
184. }
185. }
186. }
187.
188. /**
189. * 显示输入流中还剩的字节数
190. *
191. * @param in
192. */
193. private static void showAvailableBytes(InputStream in) {
194. try {
195. n("当前字节输入流中的字节数为:" +
ble());
196. } catch (IOException e) {
197. tackTrace();
198. }
199. }
200.
201. public static void main(String[] args) {
202. String fileName = "C:/temp/";
203. leByBytes(fileName);
204. leByChars(fileName);
205. leByLines(fileName);
206. leByRandomAccess(fileName);
207. }
208. }
二、将内容追加到文件尾部
1. import iter;
2. import ption;
3. import AccessFile;
4.
5. /**
6. * 将内容追加到文件尾部
7. */
8. public class AppendToFile {
9.
10. /**
11. * A方法追加文件:使用RandomAccessFile
12. * @param fileName 文件名
13. * @param content 追加的内容
14. */
15. public static void appendMethodA(String fileName, String content) {
16. try {
17. // 打开一个随机访问文件流,按读写方式
18. RandomAccessFile randomFile
= new RandomAccessFile(fileName, "rw");
19. // 文件长度,字节数
20. long fileLength = ();
21. //将写文件指针移到文件尾。
22. (fileLength);
23. ytes(content);
24. ();
25. } catch (IOException e) {
26. tackTrace();
27. }
28. }
29.
30. /**
31. * B方法追加文件:使用FileWriter
32. * @param fileName
33. * @param content
34. */
35. public static void appendMethodB(String fileName, String content) {
36. try {
37. //打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件
38. FileWriter writer = new FileWriter(fileName, true);
39. (content);
40. ();
41. } catch (IOException e) {
42. tackTrace();
43. }
44. }
45.
46. public static void main(String[] args) {
47. String fileName = "C:/temp/";
48. String content = "new append!";
49. //按方法A追加文件
50. MethodA(fileName, content);
51. MethodA(fileName, "append end. n");
52. //显示文件内容
53. leByLines(fileName);
54. //按方法B追加文件
55. MethodB(fileName, content);
56. MethodB(fileName, "append end. n");
57. //显示文件内容
58. leByLines(fileName);
59. }
60. }
版权声明:本文标题:java文件读取方法 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/free/1704841839h463918.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论