FileNotFound错误,但我的txt文件与Java文件位于同一位置

问题描述 投票:1回答:1

因此,我有此程序应读取有关项目清单的txt文件,问题是当我运行它时,我得到此“找不到文件stock.txt。”,我将其全部放在同一文件夹中,即Java文件,类文件和txt文件,但仍然没有任何反应。这是代码:

import java.util.StringTokenizer;
import java.io.*;
import java.text.DecimalFormat;
class InventoryItem {
   private String name;
   private int units;   // number of available units of this item
   private float price;  // price per unit of this item
   private DecimalFormat fmt;
   public InventoryItem (String itemName, int numUnits, float cost) {
      name = itemName;
      units = numUnits;
      price = cost;
      fmt = new DecimalFormat ("0.##");
   }
   public String toString()   {
      return name + ":\t" + units + " at " + price + " = " +
             fmt.format ((units * price));
   }
}
public class Inventory{
   //  Reads data about a store inventory from an input file,
   //  creating an array of InventoryItem objects, then prints them.
   public static void main (String[] args)   {
      final int MAX = 100;
      InventoryItem[] items = new InventoryItem[MAX];
      StringTokenizer tokenizer;
      String line, name, file="inventory.txt";
      int units, count = 0;
      float price;

      try{
         FileReader fr = new FileReader (file);
         BufferedReader inFile = new BufferedReader (fr);
         line = inFile.readLine();
         while (line != null) {
            tokenizer = new StringTokenizer (line);
            name = tokenizer.nextToken();
            try            {
               units = Integer.parseInt (tokenizer.nextToken());
               price = Float.parseFloat (tokenizer.nextToken());
               items[count++] = new InventoryItem (name, units, price);
            }
            catch (NumberFormatException exception)            {
               System.out.println ("Error in input. Line ignored:");
               System.out.println (line);
            }
            line = inFile.readLine();
         }
         inFile.close();

                 for (int scan = 0; scan < count; scan++)
                     System.out.println (items[scan]);
               }
               catch (FileNotFoundException exception)      {
                  System.out.println ("The file " + file + " was not found.");
               }
               catch (IOException exception)      {
                  System.out.println (exception);
               }
            }
         }

现在是我想要读取的txt文件:

Widget 14 3.35 Spoke 132 0.32 Wrap 58 1.92 Thing 28 4.17 Brace 25 1.75 Clip 409 0.12 Cog 142 2.08

编辑:很抱歉,我没有指定目录,所以我的文件位于我的下载文件中,因此路径为cd \ users \ person \ downloads。我在这里有Inventory.java,Inventory.class和venture.txt

java io bufferedreader filenotfoundexception
1个回答
-1
投票

如果您的.txt文件位于诸如MyProject \ src \ main \ java \ aPackage \ inventory.txt之类的路径上

您可以这样做:

String file = new File(new File("src/main/java/aPackage").getAbsoluteFile() + File.separator + "inventory.txt").toString();

String file = System.getProperty("user.dir") + File.separator + "src/main/java/aPackage"+ File.separator + "inventory.txt";

这是使用您提供的代码的有效示例:

import java.util.StringTokenizer;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.text.DecimalFormat;

class InventoryItem {
    private String name;
    private int units;   // number of available units of this item
    private float price;  // price per unit of this item
    private DecimalFormat fmt;
    public InventoryItem (String itemName, int numUnits, float cost) {
        name = itemName;
        units = numUnits;
        price = cost;
        fmt = new DecimalFormat ("0.##");
    }
    public String toString()   {
        return name + ":\t" + units + " at " + price + " = " +
                fmt.format ((units * price));
    }
}
public class Inventory{
    //  Reads data about a store inventory from an input file,
    //  creating an array of InventoryItem objects, then prints them.
    public static void main (String[] args)   {
        final int MAX = 100;
        InventoryItem[] items = new InventoryItem[MAX];
        StringTokenizer tokenizer;
        String line, name;
        String file = new File(new File("src/main/java/aPackage").getAbsoluteFile() + File.separator + "inventory.txt").toString();
        int units, count = 0;
        float price;

        try{
            BufferedReader inFile = new BufferedReader(new FileReader(file));
            line = inFile.readLine();
            while (line != null) {
                tokenizer = new StringTokenizer (line);
                name = tokenizer.nextToken();
                try            {
                    units = Integer.parseInt (tokenizer.nextToken());
                    price = Float.parseFloat (tokenizer.nextToken());
                    items[count++] = new InventoryItem (name, units, price);
                }
                catch (NumberFormatException exception)            {
                    System.out.println ("Error in input. Line ignored:");
                    System.out.println (line);
                }
                line = inFile.readLine();
            }
            inFile.close();

            for (int scan = 0; scan < count; scan++)
                System.out.println (items[scan]);
        }
        catch (FileNotFoundException exception)      {
            System.out.println ("The file " + file + " was not found.");
        }
        catch (IOException exception)      {
            System.out.println (exception);
        }
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.