Java语言的新手,
以下是我的代码。但是整个字符串不会写入文件。只有第一个令牌写入文件。任何解释?
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
public class FichierTexteWrite {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
System.out.println("Entrez le nom d'un fichier :");
Scanner in = new Scanner(System.in);
String filename = in.next();
FileWriter fwrite = new FileWriter(filename);
System.out.println("Entrez une phrase a memoriser");
fwrite.write(in.next());
System.out.println("Writing on file complete ");
fwrite.close();
}catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
我也尝试了nextLine()
方法,但似乎没有帮助。它强有力地写了一个空白的字符并终止了程序。
的 --- --- EDIT 的
我也尝试过:
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
public class FichierTexteWrite {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
System.out.println("Entrez le nom d'un fichier :");
Scanner in = new Scanner(System.in);
String filename = in.next();
FileWriter fwrite = new FileWriter(filename);
System.out.println("Entrez une phrase a memoriser");
fwrite.write(in.nextLine());
System.out.println("Writing on file complete ");
fwrite.close();
}catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
如果您不相信请编译并运行该程序。它不起作用。它不允许我输入一个字符串并直接进入下一个关闭流的指令并成功输出文件。
答案 0 :(得分:2)
您应该使用in.nextLine()
来获取整行。
fwrite.write(in.nextLine());
两次使用nextLine():
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
public class FichierTexteWrite {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
System.out.println("Entrez le nom d'un fichier :");
Scanner in = new Scanner(System.in);
String filename = in.nextLine(); // *** note change
FileWriter fwrite = new FileWriter(filename);
System.out.println("Entrez une phrase a memoriser");
fwrite.write(in.nextLine());
System.out.println("Writing on file complete ");
fwrite.close();
}catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
否则你的nextLine()调用将读取第一行的行尾令牌,即获取文件名的行,你不想要这个。