繁体   English   中英

从一个文本文件读取并写入两个文本文件

[英]Read from one text file and write into two text files

我需要从一个文本文件(carsAndBikes.txt)中读取,并且在 cars.txt 或 bikes.txt carAndBikes 中的写入包含汽车和自行车的列表,每个名称的第一个字符是 C 或 B(C 代表 Car 和 B自行车)。 到目前为止,我有这个,但它展示了汽车和自行车的内容。 而不是分开的内容。(仅限汽车或仅限自行车)

   public static void separateCarsAndBikes(String filename) throws FileNotFoundException, IOException
    {
        //complete the body of this method to create two text files
        //cars.txt will contain only cars
        //bikes.txt will contain only bikes    
        
        File fr = new File("C:\\Users\\KM\\Documents\\NetBeansProjects\\Question4\\carsAndBikes.txt");
        Scanner scanFile = new Scanner(fr);                                                             
        String line;
                       
        while(scanFile.hasNextLine())
        {
            line = scanFile.nextLine();
            if(line.startsWith("C"))
            {
               
                try(PrintWriter printWriter = new PrintWriter("C:\\Users\\KM\\Documents\\NetBeansProjects\\Question4\\cars.txt"))
                {                  
                   printWriter.write(line);                                                                           
                }
                catch(Exception e)
                {
                    System.out.println("Message" + e);
                }
            }
            else
            {
                
                try(PrintWriter printWriter = new PrintWriter("C:\\Users\\KM\\Documents\\NetBeansProjects\\Question4\\bikes.txt"))
                {                                       
                    printWriter.write(line);                  
                }
                catch(Exception e)
                {
                    System.out.println("Message" + e);
                }               
            }            
        } 
        //close the file
       scanFile.close();      
    }        

您正在检查输入文件名是否以 c 开头,而不是检查读取的行是否以 c 开头。

您还应该在循环之前打开两个 output 文件,并在循环之后关闭它们。

// Open input file for reading 
File file = new File("C:\\Users\\KM\\Documents\\NetBeansProjects\\Question4\\carsAndBikes.txt");      
BufferedReader br = new BufferedReader(new FileReader(file))); 

// Open bike outputfile for writing
// Open cars outputfile for writing

// loop over input file contents
String line;
while( line = br.readLine()) != null ) {

    // check the start of line for the character
    if (line.startsWith("C") {
        // write to cars
    } else {
        // write to bikes
    }
}

// close all files

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM