【问题标题】:Not able to append to file with java?无法使用java附加到文件?
【发布时间】:2015-04-11 01:10:45
【问题描述】:

我目前正在尝试将字符串“testing”添加到 inventory.txt 中,以查看我的文件是否被成功附加。由于某种原因,它不会追加!它编译并成功运行,但“测试”从未出现在我的文件中。我在网上做了一堆谷歌搜索,我认为我做对了....有人可以帮我找到我的错误吗?谢谢!

/**
Add in javadoc comments
*/


//import statements
import java.io.*;
import java.util.*;

public class Try { 
    public static void main(String[] args){
        //variables
        Scanner kb = new Scanner(System.in);
        boolean valid = false;
        int mainSelect = 0;
        int itemOption = 0;
        boolean valid2 = false;
        boolean returnToMain = false;
        String theName = "";
        double thePrice = 0;
        int theQuantity = 0;
        double currBal;
        String lampName;
        double lampPrice;
        int lampQuantity;
        String chairName;
        double chairPrice;
        int chairQuantity;
        String deskName;
        double deskPrice;
        int deskQuantity;
        int sellAmnt;
        boolean valid3 = false;

        //create file
        try{
            PrintWriter outputFile = new PrintWriter("inventory.txt");
            outputFile.println("3000.0");
            outputFile.println("Lamps 15.3 400");
            outputFile.println("Chairs 19.95 250");
            outputFile.println("Desks 95.0 300");
            outputFile.close();
        }
        catch(IOException e){
            System.out.println("File cannot be created.");
        }

        //read data in from file
        try{
            File file = new File("inventory.txt");
            Scanner inFile = new Scanner(file);
            currBal = inFile.nextDouble();
            lampName = inFile.next();
            lampPrice = inFile.nextDouble();
            lampQuantity = inFile.nextInt();
            chairName = inFile.next();
            chairPrice = inFile.nextDouble();
            chairQuantity = inFile.nextInt();
            deskName = inFile.next();
            deskPrice = inFile.nextDouble();
            deskQuantity = inFile.nextInt();
            inFile.close();

            //present user with main menu
            do{
            System.out.println("Current Balance: $" + currBal);
            System.out.println("\t1. " + lampName  + "\t\t(" + lampQuantity +  " at $" + lampPrice + ")");
            System.out.println("\t2. " + chairName + "\t\t(" + chairQuantity +  " at $" + chairPrice + ")");
            System.out.println("\t3. " + deskName + "\t\t(" + deskQuantity +  " at $" + deskPrice + ")");
            System.out.println("\t0. Exit");

            while(valid == false){
                System.out.print("\nPlease enter choice: ");
                try{
                    mainSelect = kb.nextInt();
                    if(0 <= mainSelect || mainSelect >=  3){
                        valid = true;
                    }
                    else{
                        System.out.println("That is not a valid selection. Try again.");
                    }
                }
                catch(InputMismatchException ime){
                    System.out.println("That is not a valid selection. Try again.");
                    kb.next();
                }
            }
            //present user with second menu
            switch(mainSelect){
                case 1:
                    theQuantity = lampQuantity;
                    thePrice = lampPrice;
                    theName = lampName;
                    break;
                case 2:
                    theQuantity = chairQuantity;
                    thePrice = chairPrice;
                    theName = chairName;
                    break;
                case 3:
                    theQuantity = deskQuantity;
                    thePrice = deskPrice;
                    theName = deskName;
                    break;
                case 0:
                    System.exit(0);
                    break;
            }
            System.out.println("\nCurrent balance: $" + currBal);
            System.out.println("Current Quantity: " + theQuantity);
            System.out.println("Current price: $" + thePrice);
            System.out.println("1. Sell " + theName);
            System.out.println("2. Buy " + theName);
            System.out.println("3. Change price");
            System.out.println("0. Return to main menu");

            while(valid2 == false){
                System.out.print("\nPlease enter choice: ");
                try{
                    itemOption = kb.nextInt();
                    if(0 <= itemOption || itemOption >=  3){
                        valid2 = true;
                    }
                    else{
                        System.out.println("That is not a valid selection. Try again.");
                    }
                }
                catch(InputMismatchException ime){
                    System.out.println("That is not a valid selection. Try again.");
                    kb.next();
                }
            }
            //Action: sell
            if(itemOption == 1){
                do{
                    System.out.print("Amount to sell (current quantity: " + theQuantity + "): ");
                    sellAmnt = kb.nextInt();
                    returnToMain = true;
                    try{
                        sellAmnt = kb.nextInt();
                        if(0 <= sellAmnt ||  sellAmnt >= theQuantity){
                            valid3 = true;
                            try{
                                //append file
                                FileWriter fw = new FileWriter("inventory.txt", true);
                                PrintWriter pw = new PrintWriter(fw);
                                pw.write("testing"); //not working!!!!!!!!!!
                                pw.close();
                            }
                            catch(IOException e){
                                System.out.println("File not found.");
                            }
                        }
                        else{
                            System.out.println("\nThat amount is not within quantity bounds. Please enter a number within bounds.");
                        }
                    }
                    catch(InputMismatchException ime){
                        System.out.println("That is not a valid number. Try again.");
                        kb.next();
                    }
                }while(valid3 == false);
            }
            //Action: buy
            if(itemOption == 2){
                returnToMain = true;
            }
            //Action: change price
            if(itemOption == 3){
                returnToMain = true;
            }

            }while(returnToMain == true);
        }
        catch(FileNotFoundException e){
            System.out.println("Cannot find file.");
        }
    }
}

【问题讨论】:

  • 代码太多,只显示与您的问题最相关的部分
  • 您的追加代码是否正在执行?我可以看到在此之前有几个 if 条件。
  • 请遵循其他评论者的建议,并且 a) 提供能够重现故障的最少代码段。您很可能会在此过程中解决您的问题,并且 b) 验证您进入应该写入“测试”的块的条件。添加一些日志以检查您的代码是否达到该目标,或使用调试器跟踪执行。

标签: java file append


【解决方案1】:

这里:

//create file
try{
    PrintWriter outputFile = new PrintWriter("inventory.txt");
    outputFile.println("3000.0");
    outputFile.println("Lamps 15.3 400");
    outputFile.println("Chairs 19.95 250");
    outputFile.println("Desks 95.0 300");
    outputFile.close();
}
catch(IOException e){
    System.out.println("File cannot be created.");
}

您总是在重新创建文件并向其中添加内容,然后保存它。无论您对该文件做什么,每次执行应用程序时都会重写它。

作为建议,仅当您的文件不存在时才应执行这段代码。

【讨论】:

  • 这似乎不准确,因为他正在创建 FileWriter 并将 append 参数设置为 true
  • @h7r 即使您在PrintWriter 的构造函数中使用boolean 参数来附加内容,我也找不到继续添加此信息的理由,以防基本文件没有'不存在。对于这个文件的未来使用,是的,应该使用new PrintWriter("inventory.txt", true);打开它。
  • 可能是这样,但是 a) 他的问题与风格或良好做法无关 b) 正如我所说,它是 FileWriter 这样打开的。 PrintWriter 没有 append 标志,但有 autoFlushdocs.oracle.com/javase/7/docs/api/java/io/…
  • @h7r 你在 b) 上是对的,但在 a) 上不是。这应该可以解决问题。
  • 你是根据你的解释而不是问什么。在清除代码可能永远不会到达写入块的事实之前,这可能无法解决问题。
猜你喜欢
  • 1970-01-01
  • 2018-09-10
  • 2011-01-14
  • 2015-11-25
  • 2010-12-20
  • 2010-09-27
  • 1970-01-01
  • 2018-09-14
相关资源
最近更新 更多