What is the best method for removing "=" characters when concatenating base64 strings?
I transmitted a byte stream[] of data from the servlet as an http response, and on the client side I am attempting to open the pdf viewer. However, I am unable to view it due to these additional characters.
I have experimented with concatenating using +=, join, and concat, but am still left with the = character at the end of each substring.
Is there a way to concatenate the strings without including the last character?