Произошла недопустимая операция доступа с отражением Apache POI
Я использую Apache POI для работы с файлами Excel, так как в Java 9 я получаю это сообщение, согласно этому сообщению JDK9: Произошла недопустимая операция отражающего доступа. org.python.core.PySystemState, мы должны подождать, пока разработчик исправит проблему, но должен ли я оставить это так в моей новой рабочей версии? Я думаю, что это не должно быть проблемой, если я пропущу предупреждение.
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.apache.poi.util.DocumentHelper (file:/T:/Workspace/Java/Sections%20Manager/libs/poi/poi-ooxml-3.17.jar) to method com.sun.org.apache.xerces.internal.util.SecurityManager.setEntityExpansionLimit(int)
WARNING: Please consider reporting this to the maintainers of org.apache.poi.util.DocumentHelper
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
0 ответов
Добавьте обновленную зависимость poi-ooxml. Это устранит все вышеперечисленные предупреждения.
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.0</version>
</dependency>
The error I encountered was: WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.apache.poi.util.DocumentHelper (file:/D:/Libary/poi-3.12/poi-ooxml-3.12-20150511.jar) to method com.sun.org.apache.xerces.internal.util.SecurityManager.setEntityExpansionLimit(int) WARNING: Please consider reporting this to the maintainers of org.apache.poi.util.DocumentHelper WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release
please use poi-3.6 or a later version,I use poi-3