用到的技术 freeMarker+java生成word,jacob实现word转换成pdf,itext对pdf文档进行操作 生成word 1.定义模板 在word文件中定好模板 然后将模板另存为xml格式的,保存好修改文件格式为ftl,在需要遍历的地方给文件添加 <#list list as lis ...
分类:
Web程序 时间:
2020-03-30 13:03:57
阅读次数:
115
题目描述 Given an input string (s) and a pattern (p), implement regular expression matching with support for '.' and '*'. '.' Matches any single character ...
分类:
其他好文 时间:
2020-03-30 12:48:40
阅读次数:
69
问题 java中的solid原则是什么 答案 Single Responsibility Principle:单一职责原则 一个方法只做一件事情只有一个职责,一个类只做一组相关的事情、承担相近的职责。如果方法做了多个事情,当别人想使用这个方法中的第一个事情时,其他事情也不得不发生,如此一来就得拆分这 ...
分类:
编程语言 时间:
2020-03-29 18:16:53
阅读次数:
87
grafana4.get_org Show a single organization. name Name of the organization. profile Configuration profile used to connect to the Grafana instance. Def ...
分类:
其他好文 时间:
2020-03-28 21:49:12
阅读次数:
80
给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。 说明: 你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗? 示例 1: 输入: [2,2,1] 输出: 1 示例 2: 输入: [4,1,2,1,2] 输出: 4 C++解法 /* ...
分类:
其他好文 时间:
2020-03-28 20:26:21
阅读次数:
68
Air compressor technology is rapidly evolving to adapt to changing needs and the use of compressed air. Starting with single-stage machines compressin ...
分类:
其他好文 时间:
2020-03-28 16:24:08
阅读次数:
101
转自:https://www.cnblogs.com/hellovenus/p/qt_thread_timer.html Qt——线程与定时器 一、定时器QTimer类 The QTimer class provides repetitive and single-shot timers. The ...
分类:
编程语言 时间:
2020-03-28 16:15:45
阅读次数:
82
路由原理 传统开发方式 url改变后 立刻发起请求,响应整个页面,渲染整个页面 SPA 锚点值改变后 不会发起请求,发起ajax请求,局部改变页面数据 页面不跳转 用户体验更好 SPA single page application(单页应用程序) 前端路由 锚点值监视 ajax获取动态数据 核心点 ...
分类:
其他好文 时间:
2020-03-28 13:18:55
阅读次数:
84
窗体空白区域按下鼠标左键即可任意拖动窗体,不需要拖动标题栏。 Dim MoveScreen As Boolean Dim MousX As Integer Dim MousY As Integer Dim CurrX As Integer Dim CurrY As Integer Private S ...
1、单一分析模式 对于单一分析模式(Single Mode),静态时序分析工具只会在指定的一种工作条件下检查建立时间和保持时间。因此只吃一种库。 2、BC-WC分析模式 对于最好-最坏分析模式(BC-WC Mode),静态时序分析工具会同时在PVT环境中最好的和最坏工作环境下检查建立时间和保持时间。 ...
分类:
其他好文 时间:
2020-03-27 17:03:37
阅读次数:
139