如何打印我的程序?当我尝试访问.toString()时,我得到一个NullPointerException

时间:2014-03-15 17:49:59

标签: java arrays nullpointerexception text-files mergesort

当我运行程序时,它给了我这个错误。错误位于MergeInventories类以及CombInv类中。我在下面提供的课程中将它们标记出来。

java.lang.NullPointerException
    at CombInv.print(CombInv.java:19)
    at MergeInventories.main(MergeInventories.java:17)

我只是想打印出数据。我的程序基本上需要两个数组,MergeSorts它们。

以下是我的程序的多个类。

import java.io.*;

public class MergeInventories
{
    public static void main()
    {
        header();
        try
        {
            Inventory store1 = new Inventory(new File("F:\\M359 AP Computer Science\\JAVA\\Merge Inventories\\Store1.txt"));
            Inventory store2 = new Inventory(new File("F:\\M359 AP Computer Science\\JAVA\\Merge Inventories\\Store2.txt"));

            CombInv mergedInventory = mergeInventories(store1,store2);

            //store1.print();
            //store2.print();
            mergedInventory.print(); //********THIS IS LINE 17 OF THE ERROR*************
        }
        catch(Exception e)
        {
            e.printStackTrace();
            //System.out.print("Error.");
        }

    }

    private static CombInv mergeInventories(Inventory a, Inventory b)
    {
        CombInv inv = new CombInv();
        int i=0,j=0,k=0;

        while(i<a.size()&&j<b.size())
        {
            if(a.getProduct(i).getID() == b.getProduct(j).getID())
            {
                inv.add(new Product(a.getProduct(i).getID(),a.getProduct(i).getQty()+b.getProduct(j).getQty(),a.getProduct(i).getUP()));
                i++;
                j++;
            }
            else if(a.getProduct(i).getID() > b.getProduct(j).getID())
            {
                inv.add(b.getProduct(j));
                j++;
            }
            else
            {
                inv.add(a.getProduct(i));
                i++;
            }
            k++;
        }

        if(j<b.size())
        {
            for(j=j;j<b.size();j++)
            {
                inv.add(b.getProduct(j));
            }
        }
        else if(i<a.size())
        {
            for(i=i;i<a.size();i++)
            {
                inv.add(a.getProduct(i));
            }
        }
        return inv;
    }

    private static void header()
    {
        System.out.println("Varun Pinto \n8th Hour \nM359 AP Comp Sci \n");
    }
}

然后我们有库存类

import java.util.*;
import java.io.*;
import java.text.*;

public class Inventory
{
    protected int increment = -1;
    protected int size = 0;
    protected Product[] inventory = new Product[11];
    protected String header;
    protected static String CATEGORIES = "ID\tQTY\tU\\P";

    public Inventory()
    {
        header = "TOTAL INVENTORY";
    }

    public Inventory(File file)throws FileNotFoundException
    {
        Scanner fileScan = new Scanner(file);
        header = fileScan.nextLine();
        String throwaway = fileScan.nextLine();
        while(fileScan.hasNextLine())
        {
            Scanner lineScan = new Scanner(fileScan.nextLine());
            Product p = new Product(lineScan.nextInt(), lineScan.nextInt(), lineScan.nextDouble());
            increment+=1;
            inventory[increment]=p;
        }
    }

    public void add(Product p)
    {
        increment +=1;
        inventory[increment]=p;
        size +=1;
    }

    public Product getProduct(int i)
    {
        return inventory[i];    
    }

    public int size()
    {
        return size;
    }

    public void print()
    {
        System.out.println(header);
        System.out.println(CATEGORIES);
        for(Product p: inventory)
        {
            System.out.println(p.toString());
        }
        System.out.println();
    }
}

接下来我有一个CombInv类,其中有一个错误。

import java.text.*;

public class CombInv extends Inventory
{ 
    public void print(){

        System.out.println(header);
        System.out.println(CATEGORIES + "\tVALUE");

        double total = 0;

        NumberFormat f = NumberFormat.getNumberInstance();
        f.setMinimumFractionDigits(2);
        f.setMaximumFractionDigits(2);

        for(Product p: inventory)
        {
            System.out.println(p.toString() + "\t" + f.format(p.getQty() * p.getUP()));
//******THERE IS AN ERROR ON THE LINE ABOVE**************************
            total += p.getQty() * p.getUP();
        }

        System.out.println("Total Value of Stock:\t$" + total);
        System.out.println();
    }
}

最后我们有Product类,它是一个基本的超类,我试图访问.toString()但不能。

import java.text.*;

public class Product
{
    private int idNum;
    private int quantity;
    private double unitPrice;

    public Product()
    {
        idNum = 0;
        quantity = 0;
        unitPrice = 0;
    }

    public Product(int id, int q, double price)
    {
        idNum = id;
        quantity = q;
        unitPrice = price;
    }

    public int getID()
    {
        return idNum;
    }

    public int getQty()
    {
        return quantity;
    }

    public double getUP()
    {
        return unitPrice;
    }

    public String toString()
    {
        NumberFormat f = NumberFormat.getNumberInstance();
        f.setMinimumFractionDigits(2);
        f.setMaximumFractionDigits(2);

        return idNum + "\t" + quantity + "\t" + f.format(unitPrice);
    }
}

请注意,在清单中使用ArrayLists确实可以使这个程序正常工作,但是因为这是一个项目,所以我不允许仅使用ARRAYLISTS Arrays。我还必须使用MergeSort对数据进行排序。

以下是我从中读取数据的两个文本文件: Store1.txt

STORE 1 INVENTORY
ID  QTY U/P       
362 5   12.98
471 2   6.70
792 13  25.00
901 7   2.98

和Store2.txt

STORE 2 INVENTORY
ID  QTY U/P
163 4   7.20
209 5   11.98
471 5   6.70
608 4   5.90
627 2   9.99
792 1   25.00
812 4   6.00

这是我希望打印的内容

My Name 
8th Hour 
M359 AP Comp Sci 

TOTAL INVENTORY                         //It only prints out
ID      QTY     U\P VALUE               //these two lines.
163     4       7.20    28.80
209     5       11.98   59.90
362     5       12.98   64.90
471     7       6.70    46.90
608     4       5.90    23.60
627     2       9.99    19.98
792     14      25.00   350.00
812     4       6.00    24.00
901     7       2.98    20.86
Total Value of Stock:   $638.94

2 个答案:

答案 0 :(得分:1)

我花了很长时间才回答这个问题,因为我基本上把它推迟了很长时间。错误是NullPointerException,我通过简单的添加修复它:

    if(p != null)

在我调用p.toString()的所有实例之前。答案是如此简单,我无法相信我对它失去了理智,我所要做的只是检查值是否为空并且它将继续循环直到找到实际值。我知道我的Merge Sort有效。最后,这是一个非常简单的修复,并且根本不需要我更改我的代码。

另外,我不得不在Inventory类的构造函数方法的while循环中再次增加大小。我忘记这样做,但我的代码工作,尽管人们说重写MergeSorter!

答案 1 :(得分:-1)

合并两个已排序的列表时,您可能应该考虑使用以下策略:

  • 考虑生成的排序列表的大小
  • 根据生成的合并列表的大小制作循环
  • 在每个步骤中考虑下一个应该使用哪个输入列表元素
  • 确保处理元素
  • 的输入列表“耗尽”

[作业..所以没有提供代码]