java结果输出到控制台_将javaIO文件夹中的内容输出到控制台

这段代码展示了如何使用Java进行文件系统的操作,包括创建目录、创建并写入文本文件,以及读取文件内容。通过`File`类实例化并检查文件存在性,然后使用`FileInputStream`和`FileOutputStream`进行文件读写,遇到异常则捕获并打印堆栈跟踪。
摘要由CSDN通过智能技术生成

展开全部

public static void main(String[] args) {

try {

File file=new File("E:\\javaIO\\");

if(!62616964757a686964616fe4b893e5b19e31333337616531file.exists()){

file.mkdirs();

}

File login=new File("E:\\javaIO\\login.txt");

if(!login.exists()){

login.createNewFile();

}

File exercise=new File("E:\\javaIO\\exercise.txt");

if(!exercise.exists()){

exercise.createNewFile();

}

File[] fs=file.listFiles();

for(int i=0;i

System.out.println(fs[i].getName());

}

String str="asdasasd\nccccc\nvvvvv\n";

out(login,str);

str=in(login);

out(exercise, str);

str=in(exercise);

System.out.println(str);

} catch (IOException e) {

e.printStackTrace();

}

}

public static String in(File file) throws IOException{

FileInputStream in=new FileInputStream(file);

InputStreamReader inr=new InputStreamReader(in,"utf-8");

BufferedReader re=new BufferedReader(inr);

String loginStr="";

String temp=null;

while((temp=re.readLine())!=null){

loginStr+=temp+"\n";

}

re.close();

inr.close();

in.close();

return loginStr;

}

public static void out(File file,String str) throws IOException{

FileOutputStream out=new FileOutputStream(file);

OutputStreamWriter we=new OutputStreamWriter(out, "utf-8");

we.write(str);

we.close();

out.close();

}

本水货的代码,语法烂了点,见谅

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值