手摸手系列之前端Vue实现PDF预览及打印的终极解决方案

前言

近期我正在开发一个前后端分离项目,使用了Spring Boot 和 Vue2,借助了国内优秀的框架 jeecg,前端UI库则选择了 ant-design-vue。在项目中,需要实现文件上传功能,同时还要能够在线预览和下载图片和PDF文件,甚至需要在页面上直接打印PDF文件。尽管框架自带了 vue-print-nb-jeecg 组件,但它相对较为简陋,只支持单页打印,无法实现多页打印。经过仔细的权衡和比较后,最终决定采用 vue-pdf print-js 组件来满足需求。

一、先来展示一下最终效果

前端上传文件列表:
在这里插入图片描述

点击PDF文件后展示预览:

在这里插入图片描述

点击打印按钮后效果:

在这里插入图片描述

二、实现步骤及代码

vue-pdf 可以用于在线预览,而 print-js 则提供了更强大的打印功能,支持多种文档类型,包括PDF、HTML、IMAGE和JSON,而且默认情况下是PDF。其实vue-pdf 也可以实现打印功能,但是跟前述的vue-print-nb一样,只能打印页面显示的第一页内容(预览展示没问题)。
Print.js官网👉点我直达

1. 在vue中安装vue-pdfPrint.js
yarn add vue-pdf
...
yarn add print-js
2. 可以全局引入,也可以在需要的文件中引入
 import pdf from 'vue-pdf'import printJS from 'print-js'
3.主要代码
<a-modal :visible="previewVisibleForAll" :footer="null" @cancel="handleCancelAll" :width="800" :maskClosable="maskClosable" :keyboard="keyboard"><img alt="example" style="width: 100%;margin-top:20px" :src="previewFileSrc" v-if="isImage"/><div v-if="isPdf" style="overflow-y: auto;overflow-x: hidden;"><a-button shape="round" icon="file-pdf" @click="handlePrint(printData)" size="small">打印</a-button><div id="printFrom"><pdf ref="pdf" v-for="item in pageTotal":src="previewFileSrc":key="item":page="item"></pdf></div></div></a-modal>

打印按钮执行的方法

// data参数
printData: {printable: 'printFrom',header: '',ignore: ['no-print']
},// 执行方法
handlePrint(params) {printJS({printable: params.printable, // 'printFrom', // 标签元素idtype: params.type || 'html',header: params.header, // '表单',targetStyles: ['*'],style: '@page {margin:0 10mm};', // 可选-打印时去掉眉页眉尾ignoreElements: params.ignore || [], // ['no-print']properties: params.properties || null})
}

不同组件,如果文件是图片就预览图片,PDF就预览PDF。

4. 全部代码:
<template><div :id="containerId" style="position: relative"><!--  ---------------------------- begin 图片左右换位置 ------------------------------------- --><div class="movety-container" :style="{top:top+'px',left:left+'px',display:moveDisplay}" style="padding:0 8px;position: absolute;z-index: 91;height: 32px;width: 104px;text-align: center;"><div :id="containerId+'-mover'" :class="showMoverTask?'uploadty-mover-mask':'movety-opt'" style="margin-top: 12px"><a @click="moveLast" style="margin: 0 5px;"><a-icon type="arrow-left" style="color: #fff;font-size: 16px"/></a><a @click="moveNext" style="margin: 0 5px;"><a-icon type="arrow-right" style="color: #fff;font-size: 16px"/></a></div></div><!--  ---------------------------- end 图片左右换位置 ------------------------------------- --><a-uploadname="file":multiple="multiple":action="uploadAction":headers="headers":data="{'biz':bizPath}":fileList="fileList":beforeUpload="doBeforeUpload"@change="handleChange":disabled="disabled":returnUrl="returnUrl":listType="complistType"@preview="handlePreview1":showUploadList="{showRemoveIcon: true,showDownloadIcon: true}":class="{'uploadty-disabled':disabled}"><template><div v-if="isImageComp"><a-icon type="plus" /><div class="ant-upload-text">{{ text }}</div></div><a-button v-else-if="buttonVisible"><a-icon type="upload" />{{ text }}</a-button></template></a-upload><a-modal :visible="previewVisible" :footer="null" @cancel="handleCancel"><img alt="example" style="width: 100%" :src="previewImage" /></a-modal><a-modal :visible="previewVisibleForAll" :footer="null" @cancel="handleCancelAll" :width="800" :maskClosable="maskClosable" :keyboard="keyboard"><img alt="example" style="width: 100%;margin-top:20px" :src="previewFileSrc" v-if="isImage"/><div v-if="isPdf" style="overflow-y: auto;overflow-x: hidden;"><a-button shape="round" icon="file-pdf" @click="handlePrint(printData)" size="small">打印</a-button><div id="printFrom"><pdf ref="pdf" v-for="item in pageTotal":src="previewFileSrc":key="item":page="item"></pdf></div></div></a-modal></div>
</template><script>import Vue from 'vue'import { ACCESS_TOKEN } from "@/store/mutation-types"import { getFileAccessHttpUrl } from '@/api/manage';import pdf from 'vue-pdf'import printJS from 'print-js'const FILE_TYPE_ALL = "all"const FILE_TYPE_IMG = "image"const FILE_TYPE_TXT = "file"const uidGenerator=()=>{return '-'+parseInt(Math.random()*10000+1,10);}const getFileName=(path)=>{if(path.lastIndexOf("\\")>=0){let reg=new RegExp("\\\\","g");path = path.replace(reg,"/");}return path.substring(path.lastIndexOf("/")+1);}export default {name: 'JUpload',components: { pdf },data(){return {printData: {printable: 'printFrom',header: '',ignore: ['no-print']},uploadAction:window._CONFIG['domianURL']+"/sys/common/upload",headers:{},fileList: [],newFileList: [],uploadGoOn:true,previewVisible: false,//---------------------------- begin 图片左右换位置 -------------------------------------previewImage: '',containerId:'',top:'',left:'',moveDisplay:'none',showMoverTask:false,moverHold:false,currentImg:'',//---------------------------- end 图片左右换位置 -------------------------------------previewVisibleForAll:false,pageTotal: null,previewFileSrc:'',isImage:false,isExcel:false,isPdf:false,}},props:{text:{type:String,required:false,default:"点击上传"},fileType:{type:String,required:false,default:FILE_TYPE_ALL},/*这个属性用于控制文件上传的业务路径*/bizPath:{type:String,required:false,default:"temp"},value:{type:[String,Array],required:false},// update-begin- --- author:wangshuai ------ date:20190929 ---- for:Jupload组件增加是否能够点击disabled:{type:Boolean,required:false,default: false},// update-end- --- author:wangshuai ------ date:20190929 ---- for:Jupload组件增加是否能够点击//此属性被废弃了triggerChange:{type: Boolean,required: false,default: false},/*** update -- author:lvdandan -- date:20190219 -- for:Jupload组件增加是否返回url,* true:仅返回url* false:返回fileName filePath fileSize*/returnUrl:{type:Boolean,required:false,default: true},number:{type:Number,required:false,default: 0},buttonVisible:{type:Boolean,required:false,default: true},multiple: {type: Boolean,default: true},beforeUpload: {type: Function},maskClosable: {type: Boolean,default:true,},keyboard: {type: Boolean,default:true,},},watch:{value:{immediate: true,handler() {let val = this.valueif (val instanceof Array) {if(this.returnUrl){this.initFileList(val.join(','))}else{this.initFileListArr(val);}} else {this.initFileList(val)}}}},computed:{isImageComp(){return this.fileType === FILE_TYPE_IMG},complistType(){return this.fileType === FILE_TYPE_IMG?'picture-card':'text'}},created(){const token = Vue.ls.get(ACCESS_TOKEN);//---------------------------- begin 图片左右换位置 -------------------------------------this.headers = {"X-Access-Token":token};this.containerId = 'container-ty-'+new Date().getTime();//---------------------------- end 图片左右换位置 -------------------------------------},methods:{handlePrint(params) {printJS({printable: params.printable, // 'printFrom', // 标签元素idtype: params.type || 'html',header: params.header, // '表单',targetStyles: ['*'],style: '@page {margin:0 10mm};', // 可选-打印时去掉眉页眉尾ignoreElements: params.ignore || [], // ['no-print']properties: params.properties || null})},printPdf() {this.$refs.pdf.print()// window.print()},initFileListArr(val){console.log(val)if(!val || val.length==0){this.fileList = [];return;}let fileList = [];for(var a=0;a<val.length;a++){let url = getFileAccessHttpUrl(val[a].filePath);fileList.push({uid:uidGenerator(),name:val[a].fileName,status: 'done',url: url,response:{status:"history",message:val[a].filePath}})}this.fileList = fileListconsole.log(this.fileList)},initFileList(paths){if(!paths || paths.length==0){//return [];// update-begin- --- author:os_chengtgen ------ date:20190729 ---- for:issues:326,Jupload组件初始化bugthis.fileList = [];return;// update-end- --- author:os_chengtgen ------ date:20190729 ---- for:issues:326,Jupload组件初始化bug}let fileList = [];let arr = paths.split(",")for(var a=0;a<arr.length;a++){let url = getFileAccessHttpUrl(arr[a]);fileList.push({uid:uidGenerator(),name:getFileName(arr[a]),status: 'done',url: url,response:{status:"history",message:arr[a]}})}this.fileList = fileList},handlePathChange(){let uploadFiles = this.fileListlet path = ''if(!uploadFiles || uploadFiles.length==0){path = ''}let arr = [];for(var a=0;a<uploadFiles.length;a++){// update-begin-author:lvdandan date:20200603 for:【TESTA-514】【开源issue】多个文件同时上传时,控制台报错if(uploadFiles[a].status === 'done' ) {arr.push(uploadFiles[a].response.message)}else{return;}// update-end-author:lvdandan date:20200603 for:【TESTA-514】【开源issue】多个文件同时上传时,控制台报错}if(arr.length>0){path = arr.join(",")}this.$emit('change', path);},doBeforeUpload(file){this.uploadGoOn=truevar fileType = file.type;if(this.fileType===FILE_TYPE_IMG){if(fileType.indexOf('image')<0){this.$message.warning('请上传图片');this.uploadGoOn=falsereturn false;}}// 文件大小限定在600K以下const isLt2M = file.size / 1024 / 1024 < 10;if (!isLt2M){this.$message.warning('请确保上传的文件小于10MB!');this.fileList = []this.uploadGoOn=falsereturn false;}// 扩展 beforeUpload 验证if (typeof this.beforeUpload === 'function') {return this.beforeUpload(file)}return true},handleChange(info) {console.log("--文件列表改变--")if(!info.file.status && this.uploadGoOn === false){info.fileList.pop();}let fileList = info.fileListif(info.file.status==='done'){if(this.number>0){fileList = fileList.slice(-this.number);}if(info.file.response.success){fileList = fileList.map((file) => {if (file.response) {let reUrl = file.response.message;file.url = getFileAccessHttpUrl(reUrl);}return file;});}//this.$message.success(`${info.file.name} 上传成功!`);}else if (info.file.status === 'error') {this.$message.error(`${info.file.name} 上传失败.`);}else if(info.file.status === 'removed'){this.handleDelete(info.file)}this.fileList = fileListif(info.file.status==='done' || info.file.status === 'removed'){//returnUrl为true时仅返回文件路径if(this.returnUrl){this.handlePathChange()}else{//returnUrl为false时返回文件名称、文件路径及文件大小this.newFileList = [];for(var a=0;a<fileList.length;a++){// update-begin-author:lvdandan date:20200603 for:【TESTA-514】【开源issue】多个文件同时上传时,控制台报错if(fileList[a].status === 'done' ) {var fileJson = {fileName:fileList[a].name,filePath:fileList[a].response.message,fileSize:fileList[a].size};this.newFileList.push(fileJson);}else{return;}// update-end-author:lvdandan date:20200603 for:【TESTA-514】【开源issue】多个文件同时上传时,控制台报错}this.$emit('change', this.newFileList);}}},handleDelete(file){//如有需要新增 删除逻辑console.log(file)},// handlePreview(file){//   console.log('file')//   console.log(file)//   if(this.fileType === FILE_TYPE_IMG){//     this.previewImage = file.url || file.thumbUrl;//     this.previewVisible = true;//   }else{//     if(file.name.endsWith('pdf') || file.name.endsWith('PDF')) {//       let viewPath = window._CONFIG['domianURL'].replace('9999', '15550').replace('/jeecg-boot', '') + '/' + (file.url.replace(window._CONFIG['staticDomainURL'] + "/", ''))//       console.log(viewPath)//       window.open(viewPath,"_blank")//     this.isPdf = true//       this.previewFileSrc = file.url//     }//     // else {//TODO:重新打开页面//     //   location.href=file.url//     // }//   }// },// 获取pdf总页数getTotal() {// 多页pdf的src中不能直接使用后端获取的pdf地址 否则会按页数请求多次数据// 需要使用下述方法的返回值作为urlthis.previewFileSrc = pdf.createLoadingTask(this.previewFileSrc)// 获取页码this.previewFileSrc.promise.then(pdf => this.pageTotal = pdf.numPages).catch(error => {})},handlePreview1(file){if(this.fileType === FILE_TYPE_IMG){this.previewImage = file.url || file.thumbUrl;this.previewVisible = true;}else{// 判断当前文件类型this.previewFileSrc = file.url || file.thumbUrl; // "http://localhost:9999/sys/common/static/orderPaymentInfo/网约区域复习题_1694585302732.pdf"let fileTypeLocal = this.matchFileType(file.name);this.isImage = false;this.isPdf = false;if(fileTypeLocal == 'image') {this.previewVisibleForAll = true;this.isImage = true;} else if(fileTypeLocal == 'pdf') {this.previewVisibleForAll = true;this.isPdf = true;this.getTotal()} else {location.href=file.url}}},matchFileType(fileName) {// 后缀获取let suffix = '';// 获取类型结果let result = '';if (!fileName) return false;try {// 截取文件后缀suffix = fileName.substr(fileName.lastIndexOf('.') + 1, fileName.length)// 文件后缀转小写,方便匹配suffix = suffix.toLowerCase()} catch (err) {suffix = '';}// fileName无后缀返回 falseif (!suffix) {result = false;return result;}let fileTypeList = [// 图片类型{'typeName': 'image', 'types': ['png', 'jpg', 'jpeg', 'bmp', 'gif']},// 文本类型{'typeName': 'txt', 'types': ['txt']},// excel类型{'typeName': 'excel', 'types': ['xls', 'xlsx']},{'typeName': 'word', 'types': ['doc', 'docx']},{'typeName': 'pdf', 'types': ['pdf']},{'typeName': 'ppt', 'types': ['ppt']},// 视频类型{'typeName': 'video', 'types': ['mp4', 'm2v', 'mkv']},// 音频{'typeName': 'radio', 'types': ['mp3', 'wav', 'wmv']}]// let fileTypeList = ['image', 'txt', 'excel', 'word', 'pdf', 'video', 'radio']for (let i = 0; i < fileTypeList.length; i++) {const fileTypeItem = fileTypeList[i]const typeName = fileTypeItem.typeNameconst types = fileTypeItem.typesconsole.log(fileTypeItem);result = types.some(function (item) {return item === suffix;});if (result) {return typeName}}return 'other'},handleCancel(){this.previewVisible = false;},handleCancelAll(){this.previewVisibleForAll = false;this.isImage = false;this.isPdf = false;},//---------------------------- begin 图片左右换位置 -------------------------------------moveLast(){//console.log(ev)//console.log(this.fileList)//console.log(this.currentImg)let index = this.getIndexByUrl();if(index==0){this.$message.warn('未知的操作')}else{let curr = this.fileList[index].url;let last = this.fileList[index-1].url;let arr =[]for(let i=0;i<this.fileList.length;i++){if(i==index-1){arr.push(curr)}else if(i==index){arr.push(last)}else{arr.push(this.fileList[i].url)}}this.currentImg = lastthis.$emit('change',arr.join(','))}},moveNext(){let index = this.getIndexByUrl();if(index==this.fileList.length-1){this.$message.warn('已到最后~')}else{let curr = this.fileList[index].url;let next = this.fileList[index+1].url;let arr =[]for(let i=0;i<this.fileList.length;i++){if(i==index+1){arr.push(curr)}else if(i==index){arr.push(next)}else{arr.push(this.fileList[i].url)}}this.currentImg = nextthis.$emit('change',arr.join(','))}},getIndexByUrl(){for(let i=0;i<this.fileList.length;i++){if(this.fileList[i].url === this.currentImg || encodeURI(this.fileList[i].url) === this.currentImg){return i;}}return -1;}},mounted(){const moverObj = document.getElementById(this.containerId+'-mover');if(moverObj){moverObj.addEventListener('mouseover',()=>{this.moverHold = truethis.moveDisplay = 'block';});moverObj.addEventListener('mouseout',()=>{this.moverHold = falsethis.moveDisplay = 'none';});}let picList = document.getElementById(this.containerId)?document.getElementById(this.containerId).getElementsByClassName('ant-upload-list-picture-card'):[];if(picList && picList.length>0){picList[0].addEventListener('mouseover',(ev)=>{ev = ev || window.event;let target = ev.target || ev.srcElement;if('ant-upload-list-item-info' == target.className){this.showMoverTask=falselet item = target.parentElementthis.left = item.offsetLeftthis.top=item.offsetTop+item.offsetHeight-50;this.moveDisplay = 'block';this.currentImg = target.getElementsByTagName('img')[0].src}});picList[0].addEventListener('mouseout',(ev)=>{ev = ev || window.event;let target = ev.target || ev.srcElement;//console.log('移除',target)if('ant-upload-list-item-info' == target.className){this.showMoverTask=truesetTimeout(()=>{if(this.moverHold === false)this.moveDisplay = 'none';},100)}if('ant-upload-list-item ant-upload-list-item-done' == target.className || 'ant-upload-list ant-upload-list-picture-card'== target.className){this.moveDisplay = 'none';}})//---------------------------- end 图片左右换位置 -------------------------------------}},model: {prop: 'value',event: 'change'}}
</script><style lang="less">
.uploadty-disabled{.ant-upload-list-item {.anticon-close{display: none;}.anticon-delete{display: none;}}
}//---------------------------- begin 图片左右换位置 -------------------------------------.uploadty-mover-mask{background-color: rgba(0, 0, 0, 0.5);opacity: .8;color: #fff;height: 28px;line-height: 28px;}//---------------------------- end 图片左右换位置 -------------------------------------
</style>
总结

除了以上两个组件库1+1的方式,还有百度前端大神开发的vue-office组件库,而且优点也很明显:

  • 使用简单,对新手友好,只传递一个文件地址,就可实现预览。
  • 提供多种文件的一站式预览解决方案,解决常见的docx、excel、pdf三种文件的预览。
  • 预览效果也好,不只是对内容预览,也要支持样式。

预览的效果确实超级棒,可惜的是不支持打印功能,不能满足需求,可惜了。
有需要的可以去看vue-office的演示效果:
Vue框架演示效果
非Vue框架文件预览

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/80565.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

虹科分享 | 软件供应链攻击如何工作?如何评估软件供应链安全?

说到应用程序和软件&#xff0c;关键词是“更多”。在数字经济需求的推动下&#xff0c;从简化业务运营到创造创新的新收入机会&#xff0c;企业越来越依赖应用程序。云本地应用程序开发更是火上浇油。然而&#xff0c;情况是双向的&#xff1a;这些应用程序通常更复杂&#xf…

路由缓存问题 | vue-router的导航守卫

路由缓存问题 带参路由&#xff0c;当参数发生变化时&#xff0c;相同的组件实例将被复用&#xff0c;组件的生命周期钩子不会被调用&#xff0c;导致数据无法更新。 两种解决方法&#xff1a; 1. 给 RouterView绑定key值&#xff0c;即 <RouterView :key"$route.ful…

手机木马远程控制复现

目录 目录 前言 系列文章列表 渗透测试基础之永恒之蓝漏洞复现http://t.csdn.cn/EsMu2 思维导图 1&#xff0c;实验涉及复现环境 2,Android模拟器环境配置 2.1,首先从官网上下载雷电模拟器 2.2,安装雷电模拟器 2.3, 对模拟器网络进行配置 2.3.1,为什么要进行配置…

flask要点与坑

简介 Flask是一个用Python编写的Web应用程序框架&#xff0c;该框架简单易用、模块化、灵活性高。 该笔记主要记录Flask的关键要点和容易踩坑的地方 Flask 日志配置 Flask 中的自带logger模块&#xff08;也是python自带的模块&#xff09;&#xff0c;通过简单配置可以实现…

SpringMVC之JSON数据返回与异常处理机制

目录 一.SpringMVC的JSON数据返回 1.导入Maven依赖 2.配置spring-mvc.xml 3.ResponseBody注解的使用 3.1案例演示 1.List集合转JSON 2.Map集合转JSON 3.返回指定格式String 4. ResponseBody用法 5.Jackson 5.1介绍 5.2常用注解 二.异常处理机制 1.为什么要全局异常处…

Jenkins :添加node权限获取凭据、执行命令

拥有Jenkins agent权限的账号可以对node节点进行操作&#xff0c;通过添加不同的node可以让流水线项目在不同的节点上运行&#xff0c;安装Jenkins的主机默认作为master节点。 1.Jenkins 添加node获取明文凭据 通过添加node节点&#xff0c;本地监听ssh认证&#xff0c;选则凭…

详解TCP/IP协议第三篇:通信数据在OSI通信模型的上下传输

文章目录 一&#xff1a;OSI通信模型间数据传输展示 二&#xff1a;应用层到会话层解析 1&#xff1a;应用层 2&#xff1a;表现层 3&#xff1a;会话层 三&#xff1a;传输层到物理层解析 1&#xff1a;传输层 2&#xff1a;网络层 3&#xff1a;数据链路层、与物理层…

考研算法47天:01背包

问题描述 算法详细步骤 代码随想录 (programmercarl.com) ac代码 #include <iostream> using namespace std; int bag[1001]; int bagMax[1001]; int bagvalue[1001]; int main(){int n,v;cin>>n>>v;for(int i0;i<n;i){cin>>bag[i]>>bagva…

【C++杂货铺】继承由浅入深详细总结

文章目录 一、继承的概念及定义1.1 继承的概念1.2 继承定义1.2.1 定义格式1.2.2 继承方式和访问限定符1.2.3 继承基类成员访问方式的变化 二、基类和派生类对象赋值转换三、继承中的作用域四、派生类中的默认成员函数4.1 默认构造函数4.2 拷贝构造函数4.3 赋值运算符重载函数4.…

【C++】动态规划题目总结(随做随更)

文章目录 一. 斐波那契数列模型1. 第 N 个泰波那契数2. 三步问题3. 使用最小花费爬楼梯解法一&#xff1a;从左往右填表解法二&#xff1a;从右往左填表 一. 斐波那契数列模型 解题步骤&#xff1a; 确定状态表示&#xff08;最重要&#xff09;&#xff1a;明确dp表里的值所…

PYTHON-模拟练习题目集合

&#x1f308;write in front&#x1f308; &#x1f9f8;大家好&#xff0c;我是Aileen&#x1f9f8;.希望你看完之后&#xff0c;能对你有所帮助&#xff0c;不足请指正&#xff01;共同学习交流. &#x1f194;本文由Aileen_0v0&#x1f9f8; 原创 CSDN首发&#x1f412; 如…

Python的get请求报错Error: Unexpected status code 400

一句话导读&#xff1a; 最近在做研发效能提升的事情&#xff0c;其中有一块就是要对项目管理相关数据做统计&#xff0c;我们使用的是ones做的项目管理&#xff0c;ones本身带的那些报表满足不了我们的需求&#xff0c;就想着看这些数据是不是能自己拿出来做统计&#xff0c;有…

浅谈C++|多态篇

1.多态的基本概念 多态是C面向对象三大特性之一多态分为两类 1. 静态多态:函数重载和运算符重载属于静态多态&#xff0c;复用函数名 2.动态多态:派生类和虚函数实现运行时多态 静态多态和动态多态区别: 静态多态的函数地址早绑定–编译阶段确定函数地址 动态多态的函数地址晚绑…

Linux学习之平均负载的概念和查看方法

先理解一下平均负载的含义&#xff1a; 平均负载是指单位时间内&#xff0c;系统处于可运行状态和不可中断状态的进程数&#xff0c;也可以看成平均活跃进程数。 可运行状态的进程&#xff1a; 正在使用CPU或者正在等待CPU处理的进程&#xff0c;ps 命令看到的&#xff0c;处于…

黑马JVM总结(十)

&#xff08;1&#xff09;直接内存_基本使用 下面我们看一下使用了ByteBuffer直接内存&#xff0c;大文件的读写效率是非常的高 Java本身并不具备磁盘读写的能力&#xff0c;它需要调用操作系统的函数&#xff0c;需要从java的方法内部调用本地方法操作系统的方法&#xff0c…

bboss 流批一体化框架 与 数据采集 ETL

数据采集 ETL 与 流批一体化框架 特性&#xff1a; 高效、稳定、快速、安全 bboss 是一个基于开源协议 Apache License 发布的开源项目&#xff0c;主要由以下三部分构成&#xff1a; Elasticsearch Highlevel Java Restclient &#xff0c; 一个高性能高兼容性的Elasticsea…

【C刷题】day2

一、选择题 1、以下程序段的输出结果是&#xff08; &#xff09; #include<stdio.h> int main() { char s[] "\\123456\123456\t"; printf("%d\n", strlen(s)); return 0; } A: 12 B: 13 C: 16 D: 以上都不对【答案】&#xff1a; A 【解析】…

Python Opencv实践 - 视频文件写入(格式和分辨率修改)

参考资料&#xff1a; python opencv写视频——cv2.VideoWriter()_cv2.cv.videowriter(_翟羽嚄的博客-CSDN博客 import cv2 as cv import numpy as np#1. 打开原始视频 video_in cv.VideoCapture("../SampleVideos/Unity2D.mp4") video_width int(video_in.get(c…

带你了解前后端分离的秘密-Vue【vue入门】

&#x1f3c5;我是默&#xff0c;一个在CSDN分享笔记的博主。&#x1f4da;&#x1f4da; &#x1f31f;在这里&#xff0c;我要推荐给大家我的专栏《Vue》。&#x1f3af;&#x1f3af; &#x1f680;无论你是编程小白&#xff0c;还是有一定基础的程序员&#xff0c;这个专栏…

无涯教程-JavaScript - ATAN2函数

描述 The ATAN2 function returns the arctangent, or inverse tangent, of the specified x- and ycoordinates, in radians, between -π/2 and π/2. 语法 ATAN2 (x_num, y_num)争论 Argument描述Required/OptionalX_numThe x-coordinate of the point.RequiredY_numThe…