当前位置:   article > 正文

java去除以张开头的人名_java写一个程序,允许用户依次输入多个姓名和住址,并能将用户的输入保存到文件中。用户输入“quit”退...

2.写一个程序,允许用户依次输入多个姓名和住址,并能将用户的输入保存到文件中。

import java.io.*;

public class FileIn {

public static void main(String []args) throws IOException {

String name;

String address;

String q = null;

File f=new File("C:\\Users\\Media\\Desktop","file.txt");

//BufferedWriter fout=new BufferedWriter(new FileWriter(f));

FileWriter fout = new FileWriter(f, true);

//BufferedWriter fout = new BufferedWriter(new

OutputStreamWriter(

//new FileOutputStream(f, true)));

//PrintStream fout=new PrintStream(new FileOutputStream(f));

//System.setOut(fout);

fout.write("fasfas");

fout.flush();

//每次写入数据必须加filewriter.flush(),才能及时更新文件!!!!

Scanner sc=new Scanner(System.in);

while(true){

System.out.println("请依次输入姓名与地址:");

name=sc.nextLine();

if("quit".equals(name)){

fout.close();sc.close();System.exit(0);

}

else{

fout.write(name);

fout.flush();

}

address=sc.nextLine();

if("quit".equals(address))

{fout.close();sc.close();System.exit(0);}

else{

fout.write(address);

fout.flush();

}

}

}

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/198421
推荐阅读
相关标签
  

闽ICP备14008679号