-3

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 poi 4.1.

  • 2
    You need to give more detail on *exactly* what you're attempting and what you have tried to expect to get an answer. – varro May 25 '19 at 22:11

2 Answers2

0

Make a copy of the .xlsx file using OutputStream and then access the contents of the .xlsx file

Shariq Ali
  • 31
  • 1
  • 9
0

You can still access the file through Apache poi if .xlsx is in protected mode.

Shariq Ali
  • 31
  • 1
  • 9