开源软件
文章平均质量分 83
一个被IT搞的
这个作者很懒,什么都没留下…
展开
-
【坑】分布式锁之误 “解锁”(Redis为例)
基于Redis的分布式锁有各种实现。。。原创 2020-05-12 10:13:35 · 1432 阅读 · 0 评论 -
我在使用 NPOI 时遇到的问题 - Sheet Tab Color
(我文笔太烂,就当练手了) NPOI 版本信息:Binary: 2.1.3.1Source Code: https://github.com/tonyqus/npoi (2015-06-15) 最近想改善某个项目中操作 Excel 文件的性能,于是重新开始研究 NPOI。 为什么是“重新”?以前试用过 NPOI,实现过一些很基础的功能,但因为某些原因,一...原创 2015-06-17 15:10:12 · 572 阅读 · 0 评论 -
我在使用 NPOI 时遇到的问题 - Cell Comment
NPOI 版本信息:Binary: 2.1.3.1Source Code: https://github.com/tonyqus/npoi (2015-06-15) 本期问题:Cell Comment1. Comment CountNPOI 限制了每个 HSSFSheet 最大 Comment 数量:1024。(不知道为什么要这么做)(貌似 POI 中已经修复了这个 b...原创 2015-06-25 10:27:52 · 2120 阅读 · 0 评论 -
我在使用 NPOI 时遇到的问题 - CellStyle (引用同一个实例)
NPOI 版本信息:Binary: 2.1.3.1Source Code: https://github.com/tonyqus/npoi (2015-06-15) 本期问题:CellStyle (引用同一个实例)介绍 NPOI 中设置单元格样式时,网上大部分示例都是创建一个新的 ICellStyle,并将其赋给 Cell 的 CellStyle 属性。 一般操作量...2015-06-25 11:43:21 · 534 阅读 · 0 评论 -
我在使用 NPOI 时遇到的问题 - Color
NPOI 版本信息:Binary: 2.1.3.1Source Code: https://github.com/tonyqus/npoi (2015-06-15)本期问题:Color1. Custom Color / Color Palette / Color List> NPOI(HSSF)中,一般设置颜色都会赋一个 Int16 (表示颜色的索引)。 st...2015-06-25 13:32:37 · 1286 阅读 · 0 评论 -
Robot Framework 中的“坑” - Start Process
Library 'Process' 中有个 keyword 'Start Process'。(Starts a new process on background)注:Library 'OperatingSystem' 中也有个 keyword 'Start Process'。但是已被废弃,建议用 Process.Start Process。 === 这部分是我发现这个“坑”的...2015-09-15 14:40:52 · 939 阅读 · 0 评论