
java
samson_g_q_su
这个作者很懒,什么都没留下…
展开
-
PropertyDescriptor
public static void main(String[] args) throws Exception { MailForm bean = new MailForm(); Map propName = new HashMap(); propName.put("fromAddress", "su"); propName.put("money", "21"); Test t...2008-09-24 22:56:49 · 113 阅读 · 0 评论 -
Socket
import java.io.ObjectInputStream;import java.io.ObjectOutputStream;import java.net.ServerSocket;import java.net.Socket;public class Server { public static void main(String[] arg) { E...原创 2010-09-20 22:53:22 · 118 阅读 · 0 评论 -
JDBC
关键字: jdbc 学习笔记(四) JDBC 学习笔记(四) 五、JDBC中使用Transaction编程(事务编程)1. 事务是具备以下特征(ACID)的工作单元:Ø 原子性(Atomicity)—— 如果因故障而中断,则所有结果均被撤消;Ø 一致性(Consistency)—— 事务的结果保留不变;Ø 孤立性(...原创 2010-09-07 23:06:19 · 98 阅读 · 0 评论 -
JXL
sheet.addHyperlink(new WritableHyperlink(1, 1, "t",w.getSheet("Sheet2"),2,2)); http://www.iteye.com/topic/339816原创 2010-09-06 00:56:31 · 104 阅读 · 0 评论 -
File Dir
public static void main(String[] args) { ListFilesInDirectory("E:\\BeyondCompare_Study\\BeyondCompare_Study"); } static void ListFilesInDirectory(String path ) { File file = new File(path); F...原创 2010-08-30 21:06:34 · 153 阅读 · 0 评论 -
LCS(最长公共字串)算法 java实现 考虑有多个相同的长度的子串
package com.parser.main;import java.util.ArrayList;import java.util.List;//LCS算法实现 求两个字符串中间最长的公共字符串public class Ss { public static void main(String[] args) { Ss ss = new Ss(); ss.getSameStr(...原创 2010-08-23 23:03:58 · 145 阅读 · 0 评论 -
axis src
axis src原创 2010-05-19 21:56:54 · 79 阅读 · 0 评论 -
web service
asdfasdfafsd原创 2010-05-12 00:11:41 · 79 阅读 · 0 评论 -
BIRT 3
Hi,when using a Data element, no word wrap is performed in Birt 2.3.0 within a (quite long) word of the text to display. Only blanks, colons, etc. lead to a word wrap. Instead the word is just cut o...2010-04-16 00:26:01 · 117 阅读 · 0 评论 -
birt2
http://3ccoder.iteye.com/blog/585716 http://www.actuatechina.com/wiki/index.php/BIRT2.5_%E6%96%B0%E7%89%B9%E6%80%A72010-04-07 21:44:02 · 121 阅读 · 0 评论 -
birt
BIRT2010-04-07 00:57:15 · 78 阅读 · 0 评论 -
公积金
http://www.gzpi.gov.cn/GzKsxt_sydwkl2006_02_20/sydwzp/ksbm/main.asp?ksbmid=ADE8778C-0967-4E77-AEF9-590E79A551FA&2009-11-11 22:19:56 · 122 阅读 · 0 评论 -
JAVA的内省(introspector)与反射(reflection)
很多朋友在深入的接触 JAVA 语言后就会发现这样两个词:反射 (Reflection) 和内省 (Introspector) ,经常搞不清楚这到底是怎么回事,在什么场合...原创 2008-09-24 23:20:43 · 114 阅读 · 0 评论 -
Introspector
import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.beans.*; import java.io.*; import java.lang.reflect.Method; public class myBeanIntrospec...原创 2008-09-24 23:19:29 · 171 阅读 · 0 评论 -
Test
public static void main(String[] args) throws Exception{ // TODO Auto-generated method stub Runtime rt = Runtime.getRuntime(); while(true) { Process p1 = rt.exec("C:/Program F...原创 2014-06-18 22:03:34 · 132 阅读 · 0 评论