Not able to import joi
Answered
added C:\Program Files\Apache Software Foundation\Apache poi.poi-5.5.1.jar in Platform Settings>SDKs>Classpath
poi package not visible in org.Apache when trying to import
I am writing code to read and write Excel
Please sign in to leave a comment.
Hello Sriram56
It looks like the issue is that only the core POI JAR was added. For working with Excel
.xlsxfiles, you also need to addpoi-ooxmland make sure the import isorg.apache.poi...with lowercaseapache.In IntelliJ IDEA, please add it as a module dependency (File | Project Structure | Modules | Dependencies) or, if this is a Maven/Gradle project, add the dependency in the build file and reload the project.
I hope this helps!