有没有办法让FileWriter.write()在运行时中的空格后继续写入字符串?

时间:2019-02-08 06:50:18

标签: java filewriter

当我尝试运行此片段时,

import java.io.*;
import java.util.Scanner;
import static java.lang.System.*;

class  CSWrite1
{
    public static void main(String[] args) throws IOException
    {
        Scanner input = new Scanner(in);
        out.print("Enter the filename\t>"); 
        String file = input.next();
        out.println("Enter the text");
        String text = input.next();  // IN:"Hello, How are you" --> "Hello,

        try(FileWriter fw = new FileWriter(file))
        { fw.write(text); }
    }
}

以“你好,你好”作为文本输入时,文件仅以“你好,”书写。第一个空格之后的其余文本未写入文件。

2 个答案:

答案 0 :(得分:1)

以下对我有用:

import static java.lang.System.*;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;

public class CSWrite1 {
    public static void main(String[] args) {
        try (Scanner input = new Scanner(in)) {
            out.print("Enter file name> ");
            String file = input.nextLine();
            try (FileWriter fw = new FileWriter(file)) {
                out.print("Enter text: ");
                String text = input.nextLine(); // IN:"Hello, How are you" --> "Hello,
                fw.write(text);
            }
            catch (IOException xIo) {
                xIo.printStackTrace();
            }
        }
    }
}

答案 1 :(得分:0)

Scanner使用定界符,默认情况下包含空格。您可以做的(我不知道这有多优雅)是删除定界符。

Scanner input = new Scanner(System.in);
input.useDelimiter("");
String text=input.nextLine();
System.out.println(text);

这对我有用。不是您的文件编写器,而是Scanner在执行此操作。