|
@@ -245,7 +245,7 @@ public class CustomerController {
|
|
|
CustomerRec customerRec = (CustomerRec) customerService.contractDownload(customerRecId).getData();
|
|
|
String fileName = customerRec.getLowerFileName();
|
|
|
if(customerRec.getLowerBase64Str()!=null){
|
|
|
- byte [] byteArray = Base64.getDecoder().decode(customerRec.getLowerBase64Str());
|
|
|
+ byte [] byteArray = Base64.getDecoder().decode(customerRec.getLowerBase64Str().replaceAll(" +","+"));
|
|
|
InputStream inputStream = new ByteArrayInputStream(byteArray);
|
|
|
|
|
|
OutputStream outputStream = null;
|