Questions tagged [apache-poi-4]
108 questions
-1
votes
2 answers
Not able to read xlsx file - java.io.IOException: Failed to read zip entry source
I am getting below error while trying to read excel file.
java.io.IOException: Failed to read zip entry source
at org.apache.poi.openxml4j.opc.ZipPackage.(ZipPackage.java:106)
at…

Sheena Tyagi
- 71
- 9
-2
votes
1 answer
Regular expression not extracting the matched substring from the actual string
Following is the string from which I need to extract the markdown bulletpoints.
This is a paragraph with bulletpoints. * Bulletpoint1 * Bulletpoint2 * Bulletpoint3 and this is some another text.
I want to extract "* Bulletpoint1 * Bulletpoint2 *…

Furqan Ahmed
- 9
- 3
-3
votes
2 answers
How to read an .xlsx file downloaded from internet which is in protected view using Apache poi in java?
I have a requirement to download a .XLSX file from some website and place it on Java server , then read the file using java code.
But not able to read .XLSX file in java which is downloaded from internet as file is in protected view? I am using…