将吸气剂数组作为函数参数传递-Java

时间:2018-08-25 19:21:43

标签: java javafx apache-poi javafx-tableview

我正在编写一个从JFXTableView创建xls表的函数。

XSSFWorkbook wb = new XSSFWorkbook();
XSSFSheet sheet = wb.createSheet("user details");
XSSFRow header = sheet.createRow(0);
String arrayOfHeaders [] = {"Sr. No.","Name of the Member", "Customized workout card status","Contact No.","Current programme taken","Current package taken",
                            "Purpose of taking customized workout card", "body type identified"," Current Body weight","Current height","payment amount",
                            "Mode of payment"};

for(int i=0; i<arrayOfHeaders.length; i++){
    header.createCell(i).setCellValue(arrayOfHeaders[i]);
}
int index=1;
for(Member item: tableView.getItems()){
    XSSFRow row = sheet.createRow(index);
    int cellIndex=0;
    for (Method m : item.getClass().getMethods()) {
        // The getter should start with "get" 
        // I ignore getClass() method because it never returns null
        if (m.getName().startsWith("get") && !m.getName().equals("getClass")) {

            row.createCell(cellIndex).setCellValue((String) m.invoke(item));

        }
        cellIndex++;

}
    index++;
}

使用上面的代码,我能够通过吸气剂从表中检索值,但是问题是 item.getClass()。getMethods()以随机顺序返回吸气剂,并且是不可接受的,因为我要根据已定义的标头指定值。 我有很多这样的表,每个表都有自己的Class和getter,为每个表编写不同的函数似乎太冗长。因此,我打算做的是编写一个函数,让我可以传递数组中每个不同表对象的吸气剂,这样它就可以遍历特定tableView对象的所有吸气剂。像这样:

createSheets(arrayOfHeaders, tableView.getItems(), arrayOfGetters);

当前tableView使用的一个此类Member Class的示例为:

public static class Member{



    private final SimpleStringProperty name;
    private final SimpleStringProperty status;
    private final SimpleStringProperty contact;
    private final SimpleStringProperty programme;
    private final SimpleStringProperty packages;
    private final SimpleStringProperty purpose;
    private final SimpleStringProperty bodyType;
    private final SimpleStringProperty weight;
    private final SimpleStringProperty height;
    private final SimpleIntegerProperty paymentAmount;
    private final SimpleStringProperty paymentMode;


    public Member (String name, String status, String contact, String programme, String packages, String purpose, 
            String bodyType, String weight, String height, int paymentAmount, String paymentMode){

    this.name = new SimpleStringProperty(name);
    this.status = new SimpleStringProperty(status);
    this.contact = new SimpleStringProperty(contact);
    this.programme = new SimpleStringProperty(programme);
    this.packages = new SimpleStringProperty(packages);
    this.purpose = new SimpleStringProperty(purpose);
    this.bodyType = new SimpleStringProperty(bodyType);
    this.weight = new SimpleStringProperty(weight);
    this.height = new SimpleStringProperty(height);
    this.paymentAmount = new SimpleIntegerProperty(paymentAmount);
    this.paymentMode = new SimpleStringProperty(paymentMode);

    }

    public String getName() {
    return name.get();
    }

    public String getStatus() {
    return status.get();
    }

    public String getContact() {
    return contact.get();
    }

    public String getProgramme() {
    return programme.get();
    }

    public String getPackages() {
    return packages.get();
    }

    public String getPurpose() {
    return purpose.get();
    }

    public String getBodyType() {
    return bodyType.get();
    }

    public String getWeight() {
    return weight.get();
    }

    public String getHeight() {
    return height.get();
    }

    public int getPaymentAmount() {
    return paymentAmount.get();
    }

    public String getPaymentMode() {
    return paymentMode.get();
    }




}

0 个答案:

没有答案