소스 검색

代码优化开发20211122

MSY 3 년 전
부모
커밋
470800e3e8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/jkcredit/invoice/controller/localBussiness/CustomerController.java

+ 1 - 1
src/main/java/com/jkcredit/invoice/controller/localBussiness/CustomerController.java

@@ -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().replaceAll(" +","+"));
+            byte [] byteArray = Base64.getDecoder().decode(customerRec.getLowerBase64Str());
             InputStream inputStream = new ByteArrayInputStream(byteArray);
 
             OutputStream outputStream = null;