- 浏览: 38935 次
- 性别:
- 来自: 上海
最新评论
-
showlee:
我是刚开始学习Connections 一头雾水,看了你发的安装 ...
Lotus Connections安装 -
iceeer:
TDS你是怎么配置的啊 还有导入的ldif是下载的吗
Lotus Connections安装 -
xiaonu_1225:
atcompany 写道excelutil 、minBd 的定 ...
poi中的数字 -
atcompany:
excelutil 、minBd 的定义、初始化。。。 能贴个 ...
poi中的数字 -
lyqidao:
朋友希望你能加入到spring的圈子来 和大家一起分享 学习
Spring事务配置的五种方式
文章列表
最近一直在做POC,安装了一次Connections,碰了一鼻子灰呀- - 稍微总结下吧。
安装前准备:
主机名取好点,类似:example.com
直接安装在盘符根目录下,如:D:\IBM,不建议安装在program files 下
然后一路跟着安装文档走。文档见附件
安装WAS7.0 ND
安装IHS和WAS7补丁,升级至7.0.0.13 IHS可选,可以不装
DB2的安装
verify & apply DB2 licence 可选
安装TDI 7.0 及fix pack 补丁不装可能会有问题,最好安装下
安装TDS 这一步文档上没提到 ...
ER图
js全局变量、取页面所有输入项
抽象类、抽象方法
运用过哪些设计模式
list.remove注意事项
几种statement
left join 、inner join 区别
主键、唯一索引区别
如何处理线程安全问题
造成死锁的原因
首先用String读
String minStrVal = excelutil.getStringCellValue(i + 1, 3);
然后转为BigDecimal
minBd = new BigDecimal(minStrVal);
(这里如有异常需要处理下~)
最后该有小数的有了小数,该是整数的就是整数,数字超长的也不会显示为科学计数法了。
cell.getCellStyle().setDataFormat((short) 0x26);
The following is a list of built-in formats provided is POI 3.0:
S/No.
Format
Vlaue
S/No
Format
Value
1
General
0
12
h:mm AM/PM
0x12
2
0
1
13
续上
3. 其他通用规则
还有一些在各个正则表达式引擎之间比较通用的规则,在前面的讲解过程中没有提到。
3.1 表达式中,可以使用 "\xXX" 和 "\uXXXX" 表示一个字符("X" 表示一个十六进制数)
形式
字符范围
\xXX
编号在 0 ~ 255 范围的字符,比如:
1. 正则表达式规则
1.1 普通字符
字母、数字、汉字、下划线、以及后边章节中没有特殊定义的标点符号,都是"普通字符"。表达式中的普通字符,在匹配一个字符串的时候,匹配与之相同的一个字符。 举 ...
public static synchronized void setPara (String paras) {
SAXBuilder builder = new SAXBuilder();
Document read_doc = null;
File file = null;
try {
String url = UMParas.class.getResource("/").getPath();
file = new File(url ...
public class CopyDataServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String realRoot = this.getServletConfig().getServletContext().getRealPath(
"/")+"/data/";
Fi ...
public List getInfoFromXML() {
List list = new ArrayList();
SAXReader reader = new SAXReader();
try {
Document doc = reader.read(new File("d://tt.xml"));
List projects = doc.selectNodes("/imClientConfig/contactList");
Iterator it = projects.iterator();
...
public void saveToFile(String destUrl, String fileName) throws IOException {
FileOutputStream fos = null;
BufferedInputStream bis = null;
HttpURLConnection httpUrl = null;
URL url = null;
byte[] buf = new byte[1024];
int size = 0;
...
try {
URL url = new URL("http://localhost/SameTimeApp/DownloadDatServlet");
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
httpURLConnection.setRequestMethod("GET");
httpURLConnection.setDoOutput(true);
httpURLConnection ...
需要配置本地classpath
服务器端domino配置notes.ini和相关配置
http://www-01.ibm.com/support/docview.wss?uid=swg21257359
http://www.ibm.com/developerworks/cn/lotus/sametime75-todo/index.html#download
拿到ltpatoken实现sso
public void generatetoken()
{
try
{
CommunityService communityMgr = (CommunityService) ...
select * into destTbl from srcTbl
insert into destTbl(fld1, fld2) select fld1, 5 from srcTbl
以上两句都是将 srcTbl 的数据插入到 destTbl,但两句又有区别的。
第一句(select into from)要求目标表(destTbl)不存在,因为在插入时会自动创建。
第二句(insert into select from)要求目标表(destTbl)存在,由于目标表已经存在,所以我们除了插入源表(srcTbl)的字段外,还可以插入常量,如例中的:5。
--第一题
select substr(sys_connect_by_path(t.dwdm, '->'), 3) 树形路径,
t.dwdm 本级节点号,
substr(sys_connect_by_path(t.dwbzmc, '->'), 3) 树形节点明朝,
t.dwbzmc 本级节点名称
from (select a.dwdm,
a.dwbzmc,
(case
when a.dwdm = a.ssdwbm then
...
Spring事务配置的五种方式
原博主写的很好,推荐下
第一种方式:每个Bean都有一个代理
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springf ...