public static byte[] toByteArrayEfficient(InputStream is) throws Exception{
        
        int totEstimatedLength = is.available();
        int DEFAULT_BUFFER_SIZE = totEstimatedLength;
        if(DEFAULT_BUFFER_SIZE == 0)