Skip to content
Advertisement

remove or not return BufferedOutputStream file in java

i would like not to download the BufferedOutputStream when return java method.

my code:

JavaScript

my problem is when the invoices has Number it generates invoice and download in compressed zip file. but when it has no Number i dont want to download zip. but still zip file downloads but with empty no file in it.

if no pdf generated i dont want to download zip file.

any help…

Advertisement

Answer

Once you have started generating and writing the ZIP to the response output stream, there is no turning back. Just opening the stream causes the response to “commit” … meaning that you can no longer change the response code or headers.

Basically, you need to check if there are any invoices before you start generating the response. Then it should just be a matter of reorganizing the existing code.

Something like …..

JavaScript

I have fixed some bad style. See if you can spot the changes …

There is another problem that I haven’t addressed: namely that the various resources that are opened in this code ought to be managed using try with resources. However, it may not be necessary since it looks like the resources are all based on with the request output stream. That will be closed automatically by the servlet infrastructure.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement