java 文件流 文件操作疑惑 为什么运行程序后h:\\3.txt为0kb 就是为什么没有写入文件
importjava.io.*;classfs{StringBuffersb=newStringBuffer();publicfs(Filef,Stringstr){Sy...
import java.io.*;
class fs{
StringBuffer sb=new StringBuffer();
public fs(File f,String str){
System.out.println("构造函数");
this.p(f,str);
}
public void p(File f,String str){
OutputStreamWriter os = null;
try {
os = new FileWriter(new File("h:\\3.txt"));
} catch (IOException e1) {
e1.printStackTrace();
}
if(f!=null){
if(f.isDirectory()){
File fs[]=f.listFiles();
if(fs!=null){
for(int i=0;i<fs.length;i++){
p(fs[i],str);
}
}
}else{
if(f.getName().matches(".*\\."+str+"$")){
System.out.println(f);
sb.append(f.toString());
sb.append("\n");
try{
os.write(sb.toString());
// System.out.print("*****\n"+sb.toString()+"\n*****");
}catch(Exception e){
System.out.println(e);
}
}
}
try{
os.close();
}catch(Exception e){
System.out.println(e);
}
}
}
}
public class fs1{
public static void main(String[] args){
File f=new File(args[0]);
fs fl=new fs(f,args[1]);
}
} 展开
class fs{
StringBuffer sb=new StringBuffer();
public fs(File f,String str){
System.out.println("构造函数");
this.p(f,str);
}
public void p(File f,String str){
OutputStreamWriter os = null;
try {
os = new FileWriter(new File("h:\\3.txt"));
} catch (IOException e1) {
e1.printStackTrace();
}
if(f!=null){
if(f.isDirectory()){
File fs[]=f.listFiles();
if(fs!=null){
for(int i=0;i<fs.length;i++){
p(fs[i],str);
}
}
}else{
if(f.getName().matches(".*\\."+str+"$")){
System.out.println(f);
sb.append(f.toString());
sb.append("\n");
try{
os.write(sb.toString());
// System.out.print("*****\n"+sb.toString()+"\n*****");
}catch(Exception e){
System.out.println(e);
}
}
}
try{
os.close();
}catch(Exception e){
System.out.println(e);
}
}
}
}
public class fs1{
public static void main(String[] args){
File f=new File(args[0]);
fs fl=new fs(f,args[1]);
}
} 展开
1个回答
展开全部
在关闭流之前,要加入os.flush()方法,如下代码。原因是,FileWriter是缓冲字符流,对于缓冲流,是这样执行的。当缓冲区满了,就写一次,还有就是在调用flush方法写一次,所以你在关闭的时候,如果缓冲区没满,是没写的,你不flush,那最终关闭了也没有数据写进文件。确保所有数据都写入了的办法就是在关闭流之前调用一次flush方法。
try {
os.flush();
os.close();
} catch (Exception e) {
System.out.println(e);
}
try {
os.flush();
os.close();
} catch (Exception e) {
System.out.println(e);
}
追问
我按照你的方法运行了啊 但是还是 没有写入 能不能帮我运行一下啊 你看看 怎么回事 谢谢了
追答
你传的参数,是什么。args[0]和args[1]具体是传的什么。发来我看看,我估计,你的参数,让你的代码。只执行了
os = new FileWriter(new File("h:\\3.txt"));
但,并没有执行下面代码中的情况,也就是,参数不满足f.getName().matches(".*\\." + str + "$"),所以只创建了文件,没有写数据。
if (f.getName().matches(".*\\." + str + "$")) {
System.out.println(f);
sb.append(f.toString());
sb.append("\n");
try {
os.write(sb.toString());
// System.out.print("*****\n"+sb.toString()+"\n*****");
} catch (Exception e) {
System.out.println(e);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询