java JTable,defaultTableModel想要addRow

时间:2011-05-26 10:50:51

标签: java swing jtable

我正在尝试像这样添加行到JTable

DefaultTableModel model = new DefaultTableModel();
            try {
                Builder builder = new Builder();
                Document doc = builder.build(Config.PATH +"incasation.xml");

                Element root = doc.getRootElement();    
                Elements childs = root.getChildElements("locations");

                model.addColumn("Name");
                model.addColumn("Total");
                model.addColumn("Location fee");
                model.addColumn("Bank");
                model.addColumn("Tax");

                float baseSum = 0;
                float locationSum = 0;
                float bankSum = 0;
                float taxSum = 0;

                for(int i=0; i< childs.size(); i++)
                {
                    Element child = childs.get(i);

                    model.addRow(new Object[] {
                        child.getFirstChildElement("name").getValue(),
                        child.getFirstChildElement("base").getValue(),
                        child.getFirstChildElement("locationfee").getValue(),
                        child.getFirstChildElement("bank").getValue(),
                        child.getFirstChildElement("tax").getValue()
                    });


                    baseSum += Float.parseFloat(child.getFirstChildElement("base").getValue());

                    locationSum += Float.parseFloat(child.getFirstChildElement("locationfee").getValue());
                    bankSum += Float.parseFloat(child.getFirstChildElement("bank").getValue());
                    taxSum += Float.parseFloat(child.getFirstChildElement("tax").getValue());

                }


                model.addRow(new Object[] {
                    "SUM",
                    Float.toString(baseSum),
                    Float.toString(locationSum),
                    Float.toString(bankSum),
                    Float.toString(taxSum)
                });

            }
            catch(Exception e){}

在这种情况下,JTable只获得第一行,所以我试着像这样

DefaultTableModel model = new DefaultTableModel();
            try {
                Builder builder = new Builder();
                Document doc = builder.build(Config.PATH +"incasation.xml");

                Element root = doc.getRootElement();    
                Elements childs = root.getChildElements("locations");

                model.addColumn("Name");
                model.addColumn("Total");
                model.addColumn("Location fee");
                model.addColumn("Bank");
                model.addColumn("Tax");

                float baseSum = 0;
                float locationSum = 0;
                float bankSum = 0;
                float taxSum = 0;

                for(int i=0; i< childs.size(); i++)
                {
                    Element child = childs.get(i);

                    model.addRow(new Object[] {
                        child.getFirstChildElement("name").getValue(),
                        child.getFirstChildElement("base").getValue(),
                        child.getFirstChildElement("locationfee").getValue(),
                        child.getFirstChildElement("bank").getValue(),
                        child.getFirstChildElement("tax").getValue()
                    });

                }

                for(int j=0; j< childs.size(); j++)
                {
                    Element child = childs.get(j);

                    baseSum += Float.parseFloat(child.getFirstChildElement("base").getValue());         
                    locationSum += Float.parseFloat(child.getFirstChildElement("locationfee").getValue());
                    bankSum += Float.parseFloat(child.getFirstChildElement("bank").getValue());
                    taxSum += Float.parseFloat(child.getFirstChildElement("tax").getValue());
                }

                model.addRow(new Object[] {
                    "SUM",
                    Float.toString(baseSum),
                    Float.toString(locationSum),
                    Float.toString(bankSum),
                    Float.toString(taxSum)
                });

            }
            catch(Exception e){}

我在这种情况下没有添加最后一行。 如何解决这个问题?

修改 我发现解决方案之一的值是空字符串,这就是为什么没有总和。 它应该像

String base = child.getFirstChildElement("base").getValue();
baseSum += Float.parseFloat(base.equals("") ? "0" : base);  

1 个答案:

答案 0 :(得分:2)

您已使用解决方案编辑了问题。但是,解决方案并不明显,因为抛出的异常被捕获并被忽视。

这是为什么这行代码可能有问题的一个很好的例子:

catch(Exception e){}

我建议至少做一个e.printStackTrace(),以便更糟糕的情况调试会更容易。