读取文件内容(流)java
读取文件内容(流)import
import
import
public class FileStreamTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
File myfile = new File("b.txt");
try{
FileInputStream fis = new FileInputStream(myfile);
byte[] bytes = new byte[200];
//以下两种方式,读取长度的更加节约空间
int length=0;
//读取流的长度
length = fis.read(bytes);
//读取全部的
fis.read(bytes);
//输出全部内容加上byte定义的空间,不足的补空
String s = new String(bytes);
//输出全部内容
String s = new String(bytes,0,length);
System.out.println("取到的值:"+s);
}catch(IOException e){
e.printStackTrace();
}
}
}