java高手请进:求一编程:编写一个程序,在c盘根目录下创建一个名为aaa.text文件,通过程序将自己的个人信

2024-12-01 05:41:19
推荐回答(4个)
回答1:

用文件和输出流就好了么。。
public static void main(String[] args) {
try{
File file = new File("D:"+File.separator+"你要创建的文件名");
OutputStream out = new FileOutputStream(file,true);
String name = "你的名字 \r\n";
byte b[] = name.getBytes();
out.write(b);

String englishName= "你的英文名 \r\n";
byte b2[] = name2.getBytes();

out.write(b2);
out.close();
}catch (IOException e) {
e.printStackTrace();
}

}
上面是一个简单的例子程序,这样就把你的名字和英文名写入到你在C盘根目录下的文件里了~

回答2:

这是java一个重要环节IO;
IO按照读写内容可分为字节流和字符流,你这个情况用字符流比较好,读写方便;另外再加上缓冲,提高读写效率;楼上已经用字节流为你实现了将字符内容写入文本文件;读取的话,也很简单:
//没有捕捉异常,只是描述实现思路
InputStream is = new FileInputStream("文件路径"); // 获取文件流
InputStreamReader isr = new InputStreamReader(is); // 字符流桥转换器
BufferedReader reader = new BufferedReader(isr); // 桥接成字符流
StringBuilder strBuilder = new StringBuilder();
String str = reader.readLine(); // 读取一行文本
while(strBuilder != null){
strBuilder.append(strBuilder);
str = reader.readLine();
}
System.out.println(strBuilder.toString());
is.close();
isr.close();
reader.close();

回答3:

public static void main(String[] args) throws IOException {
File file = new File("c:/aaa.txt");
if (!file.exists()) {
file.createNewFile();
}
PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(file)));
out.write("班级\t学号\t姓名\t年龄\t籍贯\r\n");
out.write("355\t1512\tXXX\t25\tXXXX\n");
out.close();

BufferedReader in = new BufferedReader(new FileReader(file));
String s = "";
while ((s = in.readLine()) != null) {
System.out.println(s);
}
in.close();
}

回答4:

选C,因为没有编译也就没有.class文件,自然提示找不到类