1 apache 的beanUtils 工具类,只能将Bean 转换成 Map类型,不能转换成 Map2 借助工具类DozerBeanMapper 需要引入的jar 有dozer.jar 此外还包含:slf4j.jar,commons-lang.jar,commons-beanutil.jar,.....
分类:
其他好文 时间:
2015-02-10 14:41:36
阅读次数:
2200
Write a function to find the longest common prefix string amongst an array of strings.class Solution {public: string longestCommonPrefix(vector &st...
分类:
其他好文 时间:
2015-02-10 14:41:50
阅读次数:
157
原文:http://www.iis.net/learn/manage/provisioning-and-managing-iis/managing-iis-log-file-storageOverviewIIS日志会消耗大量的硬盘空间,有潜在写满整个硬盘空间的风险. 为了解决这个问题很多用户会选择关...
分类:
其他好文 时间:
2015-02-10 14:41:15
阅读次数:
5906
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2015-02-10 14:40:36
阅读次数:
133
转自: http://hi.baidu.com/zzzevazzz/item/b2a9c9a4ea6805f615329ba7这两个Vista新增的系统服务函数原型未公开,目前网上搜索到的资料有些问题,特别是对于最后一个参数的描述不确切。首先说NtCreateUserProcess。网上找到的函数原...
分类:
其他好文 时间:
2015-02-10 14:42:33
阅读次数:
2283
Follow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.class Solution {public:void...
分类:
其他好文 时间:
2015-02-10 14:42:32
阅读次数:
126
批量文件处理中,如果因为某条数据错误导致了job abend,重新启动job再处理,几十分钟甚至几个小时的作业丢失对于分秒必争的batch cycle就是个噩梦!尤其是对DB2和file同时处理的关键程序,job abend,DB2 roll back,但是VSAM file却是已写的已经写进去,....
分类:
其他好文 时间:
2015-02-10 14:40:43
阅读次数:
196
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:
其他好文 时间:
2015-02-10 14:41:01
阅读次数:
110
考勤应该是是HR干的,但是我来的时候,没有HR。所以我暂时接手了。不得已,做了半年的考勤工作。不同的公司有不同的考勤制度,我们公司真的很复杂。和当地经销商沟通了很多,才把这款考勤机用得明白。到最后,我不了解的功能,当地的销商基本也会不了解。考虑到这个牌子的考勤机用的比较广泛,还是把总结的文档发上来。...
分类:
其他好文 时间:
2015-02-10 14:42:29
阅读次数:
301
上一篇简单的了解了IC智能卡的文件结构和APDU报文,这篇我们直接来读取卡内的数据。下面我们主要参照《中国金融集成电路(IC)卡规范》。 好了废话不多说,下面贴指令:(1)卡片接收一个来自终端的选择(SELECT)命令,请求选择 PSE(文件名“1PAY.SYS.DDF01”); 选择支付系统...
分类:
其他好文 时间:
2015-02-10 14:42:01
阅读次数:
10320
Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.class Solution {public: int romanToInt(st...
分类:
其他好文 时间:
2015-02-10 14:39:57
阅读次数:
111
Arrays.asList(T... a)可变参数.
UnsupportedOperationException的分析
分类:
其他好文 时间:
2015-02-10 14:40:07
阅读次数:
223
Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.Update (2014-11-02):The si...
分类:
其他好文 时间:
2015-02-10 14:38:29
阅读次数:
117
Then-queens puzzle is the problem of placingnqueens on ann×nchessboard such that no two queens attack each other.Given an integern, return all distinc...
分类:
其他好文 时间:
2015-02-10 14:39:14
阅读次数:
180
SAP中直接修改表、视图的Tcode有SE16N和SM30。其中使用SE16N修改表需要先输入命令&SAP_EDIT, 回车左下角显示激活SAP编辑功能后,就可以对相应的表进行新增、删除、修改的操作。有时输入&SAP_EDIT后还是不能激活,是因为另有地方限制,执行程序RKSE16N_EDIT,选中...
分类:
其他好文 时间:
2015-02-10 14:39:32
阅读次数:
191
Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the e...
分类:
其他好文 时间:
2015-02-10 14:40:11
阅读次数:
165
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique perm...
分类:
其他好文 时间:
2015-02-10 14:37:42
阅读次数:
208