为什么会出现此无法访问或未知的属性错误?

时间:2016-07-12 07:35:43

标签: java excel jxls

我正在使用Jxls导出某些测试的结果。在第一个,一切正常:

    private void exportDataDet(File file) throws ParseException, IOException, ParsePropertyException, InvalidFormatException {

    List<ResultsDetails> detRes = generateResultsDetails();
    String age = com.app.MenuInfoSujet.getTfAge().getText();
    int ageSujet = Integer.parseInt(age);
    String nivEtu = com.app.MenuInfoSujet.getTfNbreAnneesEtude().getText();
    int nivEtuSujet = Integer.parseInt(nivEtu);


    if(ageSujet < 30 && nivEtuSujet <13){
        try(InputStream is = IdGenre.class.getResourceAsStream("/xlsTemplates/IdGenre/IdGenre_20-29-et=12.xlsx")) {
            try (OutputStream os = new FileOutputStream(IdGenre)) {
                Context context = new Context();
                context.putVar("detRes", detRes);
                JxlsHelper.getInstance().processTemplate(is, os, context);
                os.flush();
                os.close();
            }
            is.close();
        }
    }

但是第二个,我一直有inaccessible or unknown property

   private void exportDataDet(File file) throws ParseException, IOException, ParsePropertyException, InvalidFormatException {

    List<ResultsDetails> detRes = generateResultsDetails();
    String sexe = com.app.MenuInfoSujet.getSexe();
    String sujetFemme = new String ("Femme");
    String sujetHomme = new String ("Homme");
    String age = com.app.MenuInfoSujet.getTfAge().getText();
    int ageSujet = Integer.parseInt(age);

    if(sexe.equals(sujetFemme) && ageSujet < 40){
        try(InputStream is = PercepHumour.class.getResourceAsStream("/xlsTemplates/PercepHumour/IdHumF20-39VO.xlsx")) {
            try (OutputStream os = new FileOutputStream(PercepHumour)) {
                Context context = new Context();
                context.putVar("detRes", detRes);
                JxlsHelper.getInstance().processTemplate(is, os, context);
                os.flush();
                os.close();
            }
            is.close();
        }
    }

ResultsDetails列表是相同的,只是一个不同的类,因为这两个测试属于不同的类。

    private List<ResultsDetails> generateResultsDetails() throws ParseException {

    List<ResultsDetails> resDet = new ArrayList<ResultsDetails>();
    for(int i=0; i<tableau.getRowCount(); i++){
        ResultsDetails newRes = new ResultsDetails(item[i], rep[i], justefaux[i], tempsrep[i]);
        item[i]=((DataPercepHumour) tableau.getModel()).getValueAt(i, 2).toString();
        rep[i]=((DataPercepHumour) tableau.getModel()).getValueAt(i, 3).toString();
        justefaux[i]=((DataPercepHumour) tableau.getModel()).getValueAt(i, 4).toString();
        tempsrep[i]=((DataPercepHumour) tableau.getModel()).getValueAt(i, 5).toString();
        resDet.add(newRes);
    }
    return resDet;
}

这些列表中的数据类型完全相同:item类似于“femme”或“drôle”,rep就像“homme”或“drôle”(这是患者的答案),justefaux就像“0” “或”1“,tempsrep就像”762“或”1462“(双倍转换为字符串的时间以毫秒为单位)。

使用完全相同的方法处理Excel工作表,实际上是复制/粘贴。因此评论位于第一个单元格jx:area(lastCell="D2")和A2 jx:each(items="detRes" var="detRes" lastCell="D2")中。使用${detRes.itemResult}等公式处理的单元格。

同样,它在任何地方都是一样的,但它只适用于IdGenre测试。我试过不同的名字,但错误不断涌现。我已经看到可以在JExl引擎(https://bitbucket.org/leonate/jxls/issues/41/myclassproperty-inaccessible-or-unknown)上使用静默模式,但我不知道如何使用我正在使用的JxlsHelper来激活它。

没有堆栈跟踪,只有Jxls的日志。对于工作条件:

09:48:13.966 [AWT-EventQueue-0] DEBUG org.jxls.util.TransformerFactory - Transformer class is org.jxls.transform.poi.PoiTransformer
09:48:15.079 [AWT-EventQueue-0] DEBUG org.jxls.area.XlsArea - Applying XlsArea at détails!A1 with Context{detRes=[com.epreuvesVO.IdGenre$ResultsDetails@63eea71d, com.epreuvesVO.IdGenre$ResultsDetails@62cb766d, com.epreuvesVO.IdGenre$ResultsDetails@566494f6, com.epreuvesVO.IdGenre$ResultsDetails@3d478ece, com.epreuvesVO.IdGenre$ResultsDetails@2b871034, com.epreuvesVO.IdGenre$ResultsDetails@12467337, com.epreuvesVO.IdGenre$ResultsDetails@607786ad, com.epreuvesVO.IdGenre$ResultsDetails@61474593, com.epreuvesVO.IdGenre$ResultsDetails@7252ff3f, com.epreuvesVO.IdGenre$ResultsDetails@532ce589, com.epreuvesVO.IdGenre$ResultsDetails@fb253af, com.epreuvesVO.IdGenre$ResultsDetails@5482e417, com.epreuvesVO.IdGenre$ResultsDetails@31cc42bf, com.epreuvesVO.IdGenre$ResultsDetails@578f9a2, com.epreuvesVO.IdGenre$ResultsDetails@18cafd89, com.epreuvesVO.IdGenre$ResultsDetails@5b2b10db]}
09:48:15.177 [AWT-EventQueue-0] DEBUG org.jxls.area.XlsArea - Applying XlsArea at détails!A2 with Context{detRes=com.epreuvesVO.IdGenre$ResultsDetails@63eea71d}
09:48:15.194 [AWT-EventQueue-0] DEBUG org.jxls.area.XlsArea - Applying XlsArea at détails!A3 with Context{detRes=com.epreuvesVO.IdGenre$ResultsDetails@62cb766d}
...

直到整个列表都被传递为止。

对于非工作条件:

09:04:25.107 [AWT-EventQueue-0] DEBUG org.jxls.util.TransformerFactory - Transformer class is org.jxls.transform.poi.PoiTransformer
09:04:26.165 [AWT-EventQueue-0] DEBUG org.jxls.area.XlsArea - Applying XlsArea at détails!A1 with Context{detResPH=[com.epreuvesVO.PercepHumour$ResultsDetails@55f82b5f, com.epreuvesVO.PercepHumour$ResultsDetails@452287d9, com.epreuvesVO.PercepHumour$ResultsDetails@747bc1a2, com.epreuvesVO.PercepHumour$ResultsDetails@b3414ea, com.epreuvesVO.PercepHumour$ResultsDetails@1f827400, com.epreuvesVO.PercepHumour$ResultsDetails@4e4f3466, com.epreuvesVO.PercepHumour$ResultsDetails@64139adc, com.epreuvesVO.PercepHumour$ResultsDetails@4fab41f0, com.epreuvesVO.PercepHumour$ResultsDetails@43051e71, com.epreuvesVO.PercepHumour$ResultsDetails@74deee73, com.epreuvesVO.PercepHumour$ResultsDetails@ce34f4e, com.epreuvesVO.PercepHumour$ResultsDetails@19522be3, com.epreuvesVO.PercepHumour$ResultsDetails@724f482e, com.epreuvesVO.PercepHumour$ResultsDetails@71e18d62, com.epreuvesVO.PercepHumour$ResultsDetails@676e352f, com.epreuvesVO.PercepHumour$ResultsDetails@6feb1712]}
09:04:26.276 [AWT-EventQueue-0] DEBUG org.jxls.area.XlsArea - Applying XlsArea at détails!A2 with Context{detResPH=com.epreuvesVO.PercepHumour$ResultsDetails@55f82b5f}
09:04:26.291 [AWT-EventQueue-0] WARN  org.apache.commons.jexl2.JexlEngine - org.jxls.expression.JexlExpressionEvaluator.evaluate@61![0,19]: 'detResPH.itemResult;' inaccessible or unknown property detResPH
09:04:26.293 [AWT-EventQueue-0] WARN  org.apache.commons.jexl2.JexlEngine - org.jxls.expression.JexlExpressionEvaluator.evaluate@61![0,18]: 'detResPH.repResult;' inaccessible or unknown property detResPH
09:04:26.295 [AWT-EventQueue-0] WARN  org.apache.commons.jexl2.JexlEngine - org.jxls.expression.JexlExpressionEvaluator.evaluate@61![0,24]: 'detResPH.justeFauxResult;' inaccessible or unknown property detResPH
09:04:26.296 [AWT-EventQueue-0] WARN  org.apache.commons.jexl2.JexlEngine - org.jxls.expression.JexlExpressionEvaluator.evaluate@61![0,23]: 'detResPH.tempsRepResult;' inaccessible or unknown property detResPH
09:04:26.297 [AWT-EventQueue-0] DEBUG org.jxls.area.XlsArea - Applying XlsArea at détails!A3 with Context{detResPH=com.epreuvesVO.PercepHumour$ResultsDetails@452287d9}
09:04:26.298 [AWT-EventQueue-0] WARN  org.apache.commons.jexl2.JexlEngine - org.jxls.expression.JexlExpressionEvaluator.evaluate@61![0,19]: 'detResPH.itemResult;' inaccessible or unknown property detResPH
09:04:26.299 [AWT-EventQueue-0] WARN  org.apache.commons.jexl2.JexlEngine - org.jxls.expression.JexlExpressionEvaluator.evaluate@61![0,18]: 'detResPH.repResult;' inaccessible or unknown property detResPH
09:04:26.300 [AWT-EventQueue-0] WARN  org.apache.commons.jexl2.JexlEngine - org.jxls.expression.JexlExpressionEvaluator.evaluate@61![0,24]: 'detResPH.justeFauxResult;' inaccessible or unknown property detResPH
09:04:26.301 [AWT-EventQueue-0] WARN  org.apache.commons.jexl2.JexlEngine - org.jxls.expression.JexlExpressionEvaluator.evaluate@61![0,23]: 'detResPH.tempsRepResult;' inaccessible or unknown property detResPH
...

它会通过ResultsDetails列表。

如果有人知道发生了什么事?

1 个答案:

答案 0 :(得分:0)

我有同样的问题。不幸的是,Jxsl的错误问题非常有限。如果结果格式正确,我建议您将其忽略。只有警告。

    2018-06-29 20:04:56,922 WARN  [http-bio-8989-exec-6] JexlEngine - org.jxls.expression.JexlExpressionEvaluator.evaluate@61![0,10]: 'log.reason;' inaccessible or unknown property log
...

不幸的是,问题与生成的行数成比例。如果输出不正确,请尝试再次检查所有内容。我在模板注释中还多了一个字符,这些问题含糊不清-它们对我没有帮助。