java中读取文件以及向文件中追加数据的总结

时间:2022-09-18 15:31:31
 package gys;

 import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.RandomAccessFile;
import java.io.Reader; public class ReadFormFile {
/**
* 以字节为单位读取文件,常用语读取二进制文件,如图片,声音,影响等文件.
*/
public static void readFileByBytes1(String fileName){
File file=new File(fileName);
InputStream in=null;
try {
System.out.println("以字节为单位读取内容,一次读一个字节:");
//一次读一个字节
in=new FileInputStream(file);
int tempbyte;
while((tempbyte=in.read())!=-1){
System.out.println(tempbyte);
}
in.close();
}catch(IOException e){
System.out.println("readFileByBytes1异常:IOException.....");
e.printStackTrace();
} catch (Exception e) {
System.out.println("readFileByBytes1异常:Exception.....");
e.printStackTrace();
}
}
/**
* 以字节为单位读取文件,常用语读取二进制文件,如图片,声音,影响等文件.
*/
public static void readFileByBytes2(String fileName){
File file=new File(fileName);
InputStream in=null;
try {
System.out.println("以字节为单位读取内容,一次读多个字节");
//一次读多个字节
byte[] tempbytes=new byte[100];
int byteread=0;
in=new FileInputStream(fileName);
ReadFormFile.showAvailableBytes(in);
//读入多个字节到字节数组中,byteread为一次读入的字节数
while((byteread=in.read(tempbytes))!=-1){
System.out.write(tempbytes,0,byteread);
}
} catch (Exception e) {
System.out.println("readFileByBytes2异常:Exception....");
}finally{
if(in !=null){
try {
in.close();
} catch (Exception e2) {
// TODO: handle exception
}
}
}
}
/**
* 以字符为单位读取文件,长用于读取文本,数字类型的文件,一次读取一个字节
*/
public static void readFileByChars1(String fileName){
File file=new File(fileName);
Reader reader=null;
try {
System.out.println("以字符为单位,一次读取一个字节");
//一次读一个字符
reader=new InputStreamReader(new FileInputStream(file));
int tempchar;
while((tempchar=reader.read())!=-1){
//对于windows下,\r\n这两个字符在一起时,表示一个换行。
// 但如果这两个字符分开显示时,会换两次行。
// 因此,屏蔽掉\r,或者屏蔽\n。否则,将会多出很多空行。
if((char) tempchar!='\r'){
System.out.println((char)tempchar);
}
}
reader.close();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 以字符为单位读取文件,长用于读取文本,数字类型的文件,一次读多个字节
*/
public static void readFileByChars2(String fileName){
File file = new File(fileName);
Reader reader = null;
try {
System.out.println("以字符为单位读取文件内容,一次读多个字节:");
// 一次读多个字符
char[] tempchars = new char[30];
int charread = 0;
reader = new InputStreamReader(new FileInputStream(fileName));
// 读入多个字符到字符数组中,charread为一次读取字符数
while ((charread = reader.read(tempchars)) != -1) {
// 同样屏蔽掉\r不显示
if ((charread == tempchars.length)
&& (tempchars[tempchars.length - 1] != '\r')) {
System.out.print(tempchars);
} else {
for (int i = 0; i < charread; i++) {
if (tempchars[i] == '\r') {
continue;
} else {
System.out.print(tempchars[i]);
}
}
}
} } catch (Exception e1) {
e1.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
}
/**
* 以行为单位读取文件,常用于读面向行的格式化文件
*/
public static void readFileByLines(String fileName){
File file=new File(fileName);
BufferedReader reader=null;
try {
System.out.println("以行为单位读取文件内容,一次读取一整行:");
reader=new BufferedReader(new FileReader(file));
String tempString=null;
int line=1;
String result="";
//一次读入一行,直到读入null为文件结束
while((tempString=reader.readLine())!=null){
//显示行号
System.out.println("line"+line+":"+tempString);
//System.out.println(tempString);
//result+=tempString;
line++;
}
//System.out.println(result);
reader.close();
}catch(IOException e){
e.printStackTrace();
} finally{
if(reader!=null){
try {
reader.close();
} catch (Exception e2) {
System.out.println("readFileByLines异常.....");
}
}
}
} /**
* 随机读取文件内容
*/
public static void readFileByRandomAccess(String fileName) {
RandomAccessFile randomFile = null;
try {
System.out.println("随机读取一段文件内容:");
// 打开一个随机访问文件流,按只读方式
randomFile = new RandomAccessFile(fileName, "r");
// 文件长度,字节数
long fileLength = randomFile.length();
// 读文件的起始位置
int beginIndex = (fileLength > 4) ? 4 : 0;
// 将读文件的开始位置移到beginIndex位置。
randomFile.seek(beginIndex);
byte[] bytes = new byte[10];
int byteread = 0;
// 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。
// 将一次读取的字节数赋给byteread
while ((byteread = randomFile.read(bytes)) != -1) {
System.out.write(bytes, 0, byteread);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (randomFile != null) {
try {
randomFile.close();
} catch (IOException e1) {
}
}
}
} /**
* 显示输入流中还剩的字节数
*/
private static void showAvailableBytes(InputStream in){
try {
System.out.println("当前输入流中的字节数为:"+in.available());
}catch(IOException e){
System.out.println("showAvailableBytes异常:IOException.....");
e.printStackTrace();
} catch (Exception e) {
System.out.println("showAvailableBytes异常:Exception.....");
e.printStackTrace();
}
} /**
*A方法追加文件:使用RandowAccessFile
*/
public static void appendMethodA(String fileName,String content){
try {
//打开一个随机访问文件流,按读写方式
RandomAccessFile randomFile=new RandomAccessFile(fileName,"rw");
//文件长度,字节数
long fileLength=randomFile.length();
//将写文件指针移到文件尾
randomFile.seek(fileLength);
randomFile.writeBytes(content);
randomFile.close();
} catch (IOException e) {
System.out.println("appendMethodA异常....");
}
} /**
* B方法追加文件:使用FileWriter
*/
public static void appendMethodB(String fileName,String content){
try {
//打开一个写文件器,构造函数中的第二个参数true表示追加形式写入
FileWriter writer=new FileWriter(fileName,true);
writer.write(content);
writer.close();
} catch (IOException e) {
System.out.println("appendMethodB异常...");
}
} }

测试代码:

 package gys;

 public class Test {
public static void main(String[] args) {
String fileName="f:/a.txt";
String content="new append";
//方法A追加文件
ReadFormFile.appendMethodA(fileName, content);
ReadFormFile.appendMethodA(fileName, "AAAAAAA \n");
//显示文件内容
ReadFormFile.readFileByLines(fileName);
//按方法B追加文件
ReadFormFile.appendMethodB(fileName, content);
ReadFormFile.appendMethodB(fileName, "BBBBBBBBBB \n");
//显示文件内容
ReadFormFile.readFileByLines(fileName);
}
}

转载自:http://www.cnblogs.com/lovebread/archive/2009/11/23/1609122.html

java中读取文件以及向文件中追加数据的总结的更多相关文章

  1. 在spark udf中读取hdfs上的文件

    某些场景下,我们在写UDF实现业务逻辑时候,可能需要去读取某个文件. 我们可以将此文件上传个hdfs某个路径下,然后通过hdfs api读取该文件,但是需要注意: UDF中读取文件部分最好放在静态代码 ...

  2. 一篇文章告诉你Python接口自动化测试中读取Text&comma;Excel&comma;Yaml文件的方法

    前言 不管是做Ui自动化和接口自动,代码和数据要分离,会用到Text,Excel,Yaml.今天讲讲如何读取文件数据 Python也可以读取ini文件,传送门 记住一点:测试的数据是不能写死在代码里面 ...

  3. IDEA中读取 resource目录下文件

    1. 资源文件 2. 加载文件 public void test() { try { System.out.println("begin test"); String filepa ...

  4. Python中读取目录里的文件并按排序列出

    1.os.listdir():用于返回指定的文件夹包含的文件或文件夹的名字的列表. 如: dir ='F:/Home_01/img'#当前目录 filenames=os.listdir(dir)#fi ...

  5. net9:图片文件转换成二进制流存入SQL数据库,以及从数据库中读取二进制流输出文件

    原文发布时间为:2008-08-10 -- 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration ...

  6. net9:图片变成二进制流存入XML文档,从XML文档中读出图片以及从XML文档中读取并创建图片文件

    原文发布时间为:2008-08-10 -- 来源于本人的百度文章 [由搬家工具导入] fileToXml类: using System;using System.Data;using System.C ...

  7. Java API 读取HDFS的单文件

    HDFS上的单文件: -bash-3.2$ hadoop fs -ls /user/pms/ouyangyewei/data/input/combineorder/repeat_rec_categor ...

  8. MVC视图中读取ViewBag传递过来的HashTable表数据

    视图中头部添加 @using System.Collections; 循环读取哈希表数据 <ul id="AccessView" class="sys_spec_t ...

  9. 用shell在一个文件后面的每一行追加数据

    在shell分析log的时候,需要将数据过滤后转为csv的格式: 要在分析好的数据后面追加逗号: sed 's/$/&,/g' no2.log > ccc.log 结果保存在ccc.lo ...

  10. Java中读取文件

    Java中读取文件,去除一些分隔符,保存在多维数组里面 public void readFile(String filePath) { File file=new File(filePath); Ar ...

随机推荐

  1. 高通vuforia&plus;Unity3D 制作ar app

    很简单就可以用Unity3D做出增强现实的一个小例子 新人第一次写博客,若出现错误望指正^_^ 需要下载de东西: unity3d 5.0 http://unity3d.com/get-unity   ...

  2. Oracle中查看所有表和字段以及表注释&period;字段注释

    获取表: select table_name from user_tables; //当前用户拥有的表 select table_name from all_tables; //所有用户的表 sele ...

  3. walk around by The provided App differs from another App with the same version and product ID 分类: Sharepoint 2015-07-05 08&colon;14 4人阅读 评论&lpar;0&rpar; 收藏

    'm currently developing a SharePoint 2013 application. After a few deployments via Visual Studio, I ...

  4. HTTPS-HSTS协议&lpar;强制客户端使用HTTPS与服务器创建连接&rpar;

    HSTS(HTTP Strict Transport Security)国际互联网工程组织IETE正在推行一种新的Web安全协议 HSTS的作用是强制客户端(如浏览器)使用HTTPS与服务器创建连接. ...

  5. SGU 187&period;Twist and whirl - want to cheat&lpar; splay &rpar;

    维护一个支持翻转次数M的长度N的序列..最后输出序列.1<=N<=130000, 1<=M<=2000 splay裸题... ------------------------- ...

  6. 在QEMU中调试ARM程序【转】

    转自:http://linuxeden.com/html/develop/20100820/104409.html 最近我想调试一个运行在QEMU模拟ARM系统中的Linux程序.我碰到过一些麻烦,因 ...

  7. 第九节,MXNet:用im2rec&period;py将图像打包生成&period;rec文件

    1.生成.lst文件 制作一个文件路径和标签的列表: import os import sys #第一个参数是输入路径 input_path=sys.argv[1].rstrip(os.sep) #第 ...

  8. 多邻国学英语 tips

    来源: https://www.cnblogs.com/daysme整理了一分多邻国学英语中的相关语法文档. 地方 null 现在完成时 null 反身代词 浓缩的精华:反身代词就是 “XX 自己” ...

  9. 4,postman和newman的联合使用

    1:下载安装node.js http://nodejs.cn/ 出现版本号证明安装node.js成功 2:安装newman npm install -g newman --registry=https ...

  10. javascript中string与int之间的转换

    string转int javascript中提供了两种方法转换为数值(int): var str='15'; var str8='015'; var strChar='12abc'; //first ...