gpt4 book ai didi

java - 为什么会发生此无法访问或未知属性错误?

转载 作者:太空宇宙 更新时间:2023-11-04 12:26:39 27 4
gpt4 key购买 nike

我正在使用 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();
}
}

但一而再、再而三,我一直拥有无法访问或未知的属性:

   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 列表。

有人知道发生了什么事吗?

最佳答案

我也有同样的问题。不幸的是,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
...

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

关于java - 为什么会发生此无法访问或未知属性错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38322650/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com