####Overlapped Model 这个模型的基本设计思想是允许应用程序使用重叠数据结构一次投递一个或者多个异步IO请求(既所谓的重叠IO),提交的I/O请求完成之后,与之关联的重叠数据结构中的事件对象受信,应用程序便可使用WSAGetOverlappedResult函数获取重叠操作的结果 # ...
分类:
移动开发 时间:
2020-08-13 22:15:04
阅读次数:
90
A real case which is related to Automatic Delta Handling I use a ticket which I am struggling with recently to start this blog. It took me almost the ...
分类:
Web程序 时间:
2020-08-06 13:09:48
阅读次数:
101
(function($) { $.fn.extend({ slider: function(options) { var settings = $.extend({ speed: 500 }, options); return this.each(function() { var slidercon ...
分类:
Web程序 时间:
2020-08-03 00:52:52
阅读次数:
375
写在前面Java后端程序员应该会遇到读取Excel信息到DB等相关需求,脑海中可能突然间想起ApachePOI这个技术解决方案,但是当Excel的数据量非常大的时候,你也许发现,POI是将整个Excel的内容全部读出来放入到内存中,所以内存消耗非常严重,如果同时进行包含大数据量的Excel读操作,很容易造成内存溢出问题但EasyExcel的出现很好的解决了POI相关问题,原本一个3M的Excel用
分类:
其他好文 时间:
2020-08-02 10:24:09
阅读次数:
95
话不多讲,也不知道咋讲!直接上代码 认证信息承载对象【user】 /// <summary> /// 认证用户信息 /// </summary> public class DyUser { /// <summary> /// 用户ID /// </summary> public int UserId ...
分类:
Web程序 时间:
2020-08-01 21:32:30
阅读次数:
138
例子: <!-- poi --><dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.17</version> <exclusions> <exclusion> <groupId> ...
分类:
数据库 时间:
2020-07-30 21:49:59
阅读次数:
87
package com.shine.eiuop.utils; import org.apache.poi.ss.usermodel.*; import org.apache.poi.hssf.usermodel.HSSFCell;import org.apache.poi.ss.usermodel. ...
分类:
编程语言 时间:
2020-07-30 18:26:57
阅读次数:
76
后台管理中经常会有一些视频上传的需求,在列表中,往往需要用到视频预览 1:安装 yarn add vue-video-player 2:引用:在main.js中引用 import VideoPlayer from 'vue-video-player' require('video.js/dist/v ...
分类:
Web程序 时间:
2020-07-30 14:07:27
阅读次数:
256
引入maven <!--excel导出--> <dependency> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artifactId> <version>2.6.12</version> </dependency> ...
分类:
编程语言 时间:
2020-07-29 17:37:19
阅读次数:
68