标签:方法 oid warning ann gis 知识库 blog style nal
Java读取txt文件内容。可以作如下理解:
1、首先获得一个文件句柄。File file = new File(); file即为文件句柄。两人之间连通电话网络了。接下来可以开始打电话了。
2、通过这条线路读取甲方的信息:new FileInputStream(file) 目前这个信息已经读进来内存当中了。接下来需要解读成乙方可以理解的东西
3、既然你使用了FileInputStream()。那么对应的需要使用InputStreamReader()这个方法进行解读刚才装进来内存当中的数据
4、解读完成后要输出呀。那当然要转换成IO可以识别的数据呀。那就需要调用字节码读取的方法BufferedReader()。同时使用bufferedReader()的readline()方法读取txt文件中的每一行数据哈。
/////////////////////////////////////////////////////////////////////
/////////////////方法一、简单的使用Scanner和PrintWriter//////
////////////////////////////////////////////////////////////////////
package com.stone.demo;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.Scanner;
public class ReadAndWriteTxtByScanner {
private static void readTxtFile(String filepath){
try {
Scanner in=new Scanner(new File(filepath));
while(in.hasNext()){
String str=in.nextLine();
System.out.println(str);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
private static void writeTxtFile(String filepath){
try {
@SuppressWarnings("resource")
String relativepath=System.getProperty("user.dir")+"/src/com/stone/demo/writefile.txt";
PrintWriter out=new PrintWriter(relativepath);
out.write("12312");
out.write("\n");
out.write("12312");
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
String filepath=System.getProperty("user.dir")+"/src/com/stone/demo/writefile.txt";
writeTxtFile(filepath);
System.out.println("==================");
readTxtFile(filepath);
}
}
/////////////////////////////////////////////////////
//////////////方法二:使用IO流///////////////////
/////////////////////////////////////////////////////
//注:摘自http://blog.csdn.net/giserstone/article/details/40922189
标签:方法 oid warning ann gis 知识库 blog style nal
原文地址:http://www.cnblogs.com/shuzhenzhumo/p/6769996.html