读取连接中文件流和页面展示base64编码的文件
创始人
2024-11-14 17:07:49
0次

读取连接中文件流和页面展示base64编码的文件

  • 背景需求
    • 从接口处获取base64编码的字节流
      • 依赖
      • java 代码
    • 前端展示
      • pdf
      • 图片

背景需求

我需要展示一个pdf 文件在页面上,但是我一直没办法将 pdf的下载链接用预览方式展示出来,于是打算讨个巧,直接给前端页面发送 Base64 编码的字符串,用来展示pdf文件。而正好我们的文件也有一个获取流的接口。于是,变出现了这篇文章。

从接口处获取base64编码的字节流

依赖

                     org.apache.hadoop             hadoop-common             3.4.0          

java 代码

  1. 直接从 URL 获取流
    public static String downloadFile3(String UrlFilePath, String localFilePath) {         URL url = null;         HttpURLConnection httpUrl = null;         try {             url = new URL(UrlFilePath);             httpUrl = (HttpURLConnection) url.openConnection();             // 设置请求方式,默认是GET             // httpUrl.setRequestMethod("POST");             httpUrl.connect();             try (BufferedInputStream bis = new BufferedInputStream(httpUrl.getInputStream())) {                 byte[] bytes = IOUtils.toByteArray(bis);                 String base64String = Base64.getEncoder().encodeToString(bytes);                  // Write the BASE64 encoded string to the file                 try (BufferedWriter writer = new BufferedWriter(new FileWriter(localFilePath))) {                     writer.write(base64String);                 }                 return base64String;             }         } catch (Exception e) {             e.printStackTrace();         }         return "";     } 
  1. 发送 GET 请求 获取流
/**      * @param url 远程文件路径      * @return base64 编码字符串      */     public static String byGet(String url) {         // 创建Httpclient对象         CloseableHttpClient httpclient = HttpClientBuilder.create().build();         RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(30000).setConnectionRequestTimeout(30000).setSocketTimeout(30000).build();          String resultString = "";         CloseableHttpResponse response = null;         try {             URIBuilder builder = new URIBuilder(url);             URI uri = builder.build();             // 创建http GET请求             HttpGet httpGet = new HttpGet(uri);             httpGet.setConfig(requestConfig);             httpGet.addHeader("Content-type", "application/json; charset=utf-8");              // 执行请求             response = httpclient.execute(httpGet);               // 判断返回状态是否为200             if (response.getStatusLine().getStatusCode() == 200) {                 InputStream inputStream = response.getEntity().getContent();                 byte[] bytes = IOUtils.toByteArray(inputStream);                 BASE64Encoder encoder = new BASE64Encoder();                 resultString = encoder.encode(bytes);                 return resultString;             }         } catch (Exception e) {          } finally {             try {                 if (response != null) {                     response.close();                 }                 httpclient.close();             } catch (IOException e) {                 e.printStackTrace();             }         }         return "";     } 

前端展示

pdf

        function viewPdf (content) {              const blob = this.base64ToBlob(content)             if (window.navigator && window.navigator.msSaveOrOpenBlob) {                 window.navigator.msSaveOrOpenBlob(blob)             } else {                 const fileURL = URL.createObjectURL(blob)                 window.open(fileURL)             }         }         function base64ToBlob (code) {             code = code.replace(/[\n\r]/g, '')             const raw = window.atob(code)             const rawLength = raw.length             const uInt8Array = new Uint8Array(rawLength)             for (let i = 0; i < rawLength; ++i) {                 uInt8Array[i] = raw.charCodeAt(i)             }             return new Blob([uInt8Array], { type: 'application/pdf' })         } 

图片

let ImgURL ="\"; 

将拼接好的 ImgURL 拼接即可

相关内容

热门资讯

一分钟教你辅助!微乐小程序免费... 您好,微乐小程序免费工具这款游戏可以开挂的,确实是有挂的,需要了解加去威信【136704302】很多...
玩家必看秘籍开挂!艾牛娱乐辅助... 玩家必看秘籍开挂!艾牛娱乐辅助透视挂,北京麻将真的是有外挂,总是有挂分享1、让任何用户在无需艾牛娱乐...
科技分享透视挂!微信小程序微乐... 科技分享透视挂!微信小程序微乐辅助免费,微乐江苏小程序游戏破解器下载-果然是真的有辅助器微信小程序微...
玩家必备科普透视挂!新九游大厅... 玩家必备科普透视挂!新九游大厅辅助透视挂,天天温岭麻将是真的有外挂,都是揭秘有挂1、用户打开应用后不...
必备科技开挂!微信小程序微乐辅... 必备科技开挂!微信小程序微乐辅助器教程,微乐自建房辅助工具安全吗-确实存在有辅助教程1)微信小程序微...
指导大家辅助!荷塘辅助透视挂,... 指导大家辅助!荷塘辅助透视挂,微乐河南麻将真的有外挂,确实有挂分析指导大家辅助!荷塘辅助透视挂,微乐...
1.9分钟了解辅助!微乐家乡麻... 1.9分钟了解辅助!微乐家乡麻将辅助,微乐小程序免费黑科技-其实真的是有辅助插件1、玩家可以在微乐小...
最终开挂!微乐浙江麻将辅助透视... 最终开挂!微乐浙江麻将辅助透视挂,闲来广东麻将真的有外挂,都是真实有挂1、下载好微乐浙江麻将脚本下载...
实测发现辅助!微乐小程序黑科技... 实测发现辅助!微乐小程序黑科技免费工具,微乐家乡官方免费下载安装-本来是真的有辅助脚本1、上手简单,...
日前开挂!挖坑青海麻将辅助透视... 日前开挂!挖坑青海麻将辅助透视挂,元来黄冈麻将是真的有外挂,一贯有挂功能1、每一步都需要思考,不同水...