
Java 示例
zhoujian2003
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Velocity初学指南1
定义一个example.vm的模板文件:## This is an example velocity template#set( $this = "Velocity")$this is great!#foreach( $name in $list ) $name is great!#end#set( $condition = true)#if ($condition) The cond原创 2005-11-23 19:48:00 · 1397 阅读 · 0 评论 -
对称加密解密
import javax.crypto.*;import java.io.UnsupportedEncodingException;import java.security.NoSuchAlgorithmException;import java.security.InvalidKeyException;/** * Created by IntelliJ IDEA. * User: LEO * D原创 2005-11-30 21:56:00 · 1250 阅读 · 0 评论