摘要: 原文:http://www.artima.com/weblogs/viewpost.jsp?thread=331531作者:Christopher Diggins好的编程原则跟好的系统设计原则和技术实施原则有着密切的联系。下面的这些编程原则在过去的这些年里让我成为了一名优秀的程序员,我相信,这些原则... 阅读全文
posted @ 2015-10-18 22:24 yzhming 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.artima.com/weblogs/viewpost.jsp?thread=331531作者:Christopher Diggins好的编程原则跟好的系统设计原则和技术实施原则有着密切的联系。下面的这些编程原则在过去的这些年里让我成为了一名优秀的程序员,我相信,这些原则... 阅读全文
posted @ 2015-10-18 22:22 yzhming 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 在校期间大家都写过不少程序,比如写个hello world服务类,然后本地调用下,如下所示。这些程序的特点是服务消费方和服务提供方是本地调用关系。而一旦踏入公司尤其是大型互联网公司就会发现,公司的系统都由成千上万大大小小的服务组成,各服务部署在不同的机器上,由不同的团队负责。这时就会遇到两个问题:1... 阅读全文
posted @ 2015-10-18 00:49 yzhming 阅读(200) 评论(0) 推荐(0) 编辑
摘要: “图标集”是Excel2007版本以后的新增功能,这个技巧其实不算复杂,主要包含了“自定义数字格式”和“条件格式”两部分内容。相信还是有不少人对这个技巧的技术细节不太了解,因此在这里详细解读一下。效果图:工作中有一些项目进程跟踪表格通常如下图所示,在“完成情况”一列中会通过文字来标识项目完成情况。如... 阅读全文
posted @ 2015-10-17 01:49 yzhming 阅读(914) 评论(0) 推荐(0) 编辑
摘要: 一.开发工具选项卡:(1)右击功能区,选择【自定义功能区】中的【自定义选项卡和组】选项卡。(2) 在右侧的列表框中,选择【开发工具】复选框。(3) 点击【确定】按钮二.激活VBE(Visual Basic编辑器) (1)快捷键:ALT+F11 (2)选择【开发工具】| 【代码】| 【Vis... 阅读全文
posted @ 2015-10-08 00:11 yzhming 阅读(714) 评论(0) 推荐(0) 编辑
摘要: 以下代码实现在工作薄开头插入一张新的工作表,内容为每个工作表的超链接。 工程->插入->模块Sub CreateLink()Dim i As IntegerSheets.Add Before:=Sheets(1)For i = 2 To Worksheets.CountActiveSheet.... 阅读全文
posted @ 2015-10-07 01:37 yzhming 阅读(605) 评论(0) 推荐(0) 编辑
摘要: In this tutorial, we will show you how to read items from multiple resources (multiple csv files), and write the items into a single csv file.Tools an... 阅读全文
posted @ 2015-10-05 21:53 yzhming 阅读(1817) 评论(0) 推荐(0) 编辑
摘要: In this tutorial, we will show you how to configure a Spring Batch job to read XML file (JAXB2library) into acsvfile, and filter out the record before... 阅读全文
posted @ 2015-10-04 00:21 yzhming 阅读(381) 评论(0) 推荐(0) 编辑
摘要: In this tutorial, we will show you how to configure a Spring Batch job to read data from an XML file (XStreamlibrary) into a no SQL database (MongoDB)... 阅读全文
posted @ 2015-09-28 15:35 yzhming 阅读(684) 评论(0) 推荐(0) 编辑
摘要: In this tutorial, we will show you how to configure a Spring Batch job to read data from a CSV file into a database.Tools and libraries used :Maven 3E... 阅读全文
posted @ 2015-09-28 15:28 yzhming 阅读(447) 评论(0) 推荐(0) 编辑