java 怎么在根目录下建立文件夹再在该文件夹下建立test.txt
publicstaticvoidmain(String[]args)throwsException{Filef=newFile("E:"+"\\test\\test.tx...
public static void main(String[] args)throws Exception {
File f=new File("E:"+"\\test\\test.txt");
System.out.println("请输入:");
Scanner sc = new Scanner(System.in);
String str = sc.next();
PrintWriter pw= new PrintWriter(f);
pw.print(str);
pw.close();
Scanner nr = new Scanner(f);
StringBuffer buf = new StringBuffer();
while (nr.hasNext()) {
buf.append(nr.next()).append("\n");// 实现从文件中读取的字符存入到缓存里
}
System.out.println("\n你刚刚的输入为:"+buf);
}
这道题是我自己在E盘下建立了test文件夹再在test文件夹下建立了test.txt才可以执行成功的。
可是我想一次性的建立文件,再从键盘输入内容,保存在test.txt下,再通过Scanner读取出来
怎么做啊?java 小白无从下手啊 展开
File f=new File("E:"+"\\test\\test.txt");
System.out.println("请输入:");
Scanner sc = new Scanner(System.in);
String str = sc.next();
PrintWriter pw= new PrintWriter(f);
pw.print(str);
pw.close();
Scanner nr = new Scanner(f);
StringBuffer buf = new StringBuffer();
while (nr.hasNext()) {
buf.append(nr.next()).append("\n");// 实现从文件中读取的字符存入到缓存里
}
System.out.println("\n你刚刚的输入为:"+buf);
}
这道题是我自己在E盘下建立了test文件夹再在test文件夹下建立了test.txt才可以执行成功的。
可是我想一次性的建立文件,再从键盘输入内容,保存在test.txt下,再通过Scanner读取出来
怎么做啊?java 小白无从下手啊 展开
1个回答
推荐于2016-07-08
展开全部
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
/**
* 小白编辑部
*/
public class LittleWhite
{
private static final String LINE = System.getProperty ("line.separator");
private static final String FILESP = System.getProperty ("file.separator");
/**
* e:/test/
*/
private static final String ROOT = "e:" + FILESP + "test" + FILESP;
private static final String FILE = "test.txt";
public static void main ( String[] args ) throws IOException
{
// 创建文件夹
File root = new File (ROOT);
if (!root.exists ())
{
root.mkdir ();
}
// 控制台输入信息
System.out.println ("请输入:");
Scanner sc = new Scanner (System.in);
String str = sc.nextLine ();
sc.close ();
// 追加写入文件
FileWriter fw = new FileWriter (ROOT + FILE, true);
fw.write (str + LINE);
fw.flush ();
fw.close ();
// 读取文件内容并显示
Scanner scanner = new Scanner (new File (ROOT + FILE));
StringBuilder builder = new StringBuilder ();
while (scanner.hasNextLine ())
{
builder.append (scanner.nextLine () + LINE);
}
scanner.close ();
System.out.println (LINE + "文件里的内容为:" + LINE + builder.toString ());
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询