I am trying to Download image (.png) file from MYSQL. some time it works fine.unable find exact problem. it works properly on Jboss server. throws an error while trying to r
The second result.next is moving you past the end of the result set.
result.next
I think you want
result = st.executeQuery(); if(result.next()){ input = result.getAsciiStream(1); }