随笔 - 6  文章 - 129  trackbacks - 0
<2024年3月>
252627282912
3456789
10111213141516
17181920212223
24252627282930
31123456

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 814153
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

02 2010 档案

Delphi中关于文件、目录操作的函数

posted @ 2010-02-25 15:31 Ke 阅读(957) | 评论 (0)  编辑

Delphi中TApplication类

posted @ 2010-02-22 15:30 Ke 阅读(263) | 评论 (0)  编辑

用鼠标拖动无标题窗口,窗口內放的是Image

posted @ 2010-02-22 11:48 Ke 阅读(373) | 评论 (0)  编辑

Delphi 時間日期函数

posted @ 2010-02-20 16:33 Ke 阅读(783) | 评论 (0)  编辑

oracle 10G正則表達式
     摘要: begin
if REGEXP_LIKE('%123456kdAAAAa89879456kjdd', '^[[:alnum:]]+$') then
dbms_output.PUT_LINE('ok');
else
dbms_output.PUT_LINE('NG');
end if;
end;  阅读全文

posted @ 2010-02-20 08:48 Ke 阅读(293) | 评论 (0)  编辑

Delphi 日誌記錄相關
     摘要: //sDir:=ExtractFilePath(Application.ExeName)+'\';
ForceDirectories(sDir + 'TESTLOG');
sBackupFile := sDir + 'TESTLOG\'+FormatDateTime('YYYYMMDDHH',now())+'.log';
AssignFile(vFile, sBackupFile);
if FileExists(sBackupFile) then
Append(vFile)
else
Rewrite(vFile);  阅读全文

posted @ 2010-02-19 14:50 Ke 阅读(527) | 评论 (0)  编辑

让delphi 的代码显示行号--CnWizards

posted @ 2010-02-11 14:48 Ke 阅读(3604) | 评论 (0)  编辑

Delphi字符串函数大全

posted @ 2010-02-11 14:07 Ke 阅读(1789) | 评论 (0)  编辑

Delphi 常用函數整理
     摘要: Delphi提供的字符串函数里有一个Pos函数,它的定义是:

function Pos(Substr: string; S: string): Integer;

  它的作用是在字符串S中查找字符串Substr,返回值是Substr在S中第一次出现的位置,如果没有找到,返回值为0。  阅读全文

posted @ 2010-02-11 13:59 Ke 阅读(257) | 评论 (0)  编辑

AssignFile Procedure Assigns a file handle to a binary or text file
     摘要: AssignFile
Procedure Assigns a file handle to a binary or text file  阅读全文

posted @ 2010-02-09 15:42 Ke 阅读(274) | 评论 (0)  编辑

Delphi快捷键

posted @ 2010-02-09 08:52 Ke 阅读(374) | 评论 (0)  编辑

在Delphi中可用FormatDateTime函数的用法

posted @ 2010-02-09 08:44 Ke 阅读(640) | 评论 (0)  编辑

Delphi TIniFile 类 操作ini配置文件

posted @ 2010-02-08 14:36 Ke 阅读(673) | 评论 (0)  编辑

用xfire的Eclipse Plugin生成web服务的客户端(轉)
     摘要: 利用xfire生成web服务客户端的方法有多种,Eclipse Plugin为XFire的WSDL->Code generator提供了Eclipse支持,它需要Eclipse 3.2和Java 5。这里我们用Eclipse Plugin根据wsdl文件地址生成客户端代码,而我们只需要编写几行代码即可实现调用web服务  阅读全文

posted @ 2010-02-06 11:36 Ke 阅读(397) | 评论 (0)  编辑

MyEclipse下开发Web Service(XFire)

posted @ 2010-02-05 11:05 Ke 阅读(297) | 评论 (0)  编辑

CVS版本控制實踐建議

posted @ 2010-02-04 14:03 Ke 阅读(202) | 评论 (0)  编辑