`
guohf
  • 浏览: 419910 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
1.示例   http://www.onlyfun.com/goods/company.jsp?companyId=455326 ==> http://www.onlyfun.com/company/455326.html   2.好处   (1)更好满足搜索引擎要求;   (2)更美观,给用户带来更良好的体验;   (3)安全性(页面,参数,技术)。   3.实现   (1)第三包urlrewrite;(2)Apache HTTP Server 2.x配制mod_proxy,Rewrite;(3)struts、springMVC reset风格等。   4.urlr ...
MyBatis中,可以使用Generator自动生成代码,包括DAO层、 MODEL层 、MAPPING SQL映射文件。 第一步:下载MyBatis的Generator工具 下载地址:http://code.google.com/p/mybatis/downloads/detail?name=mybatis-generator-core-1.3.1-bundle.zip&can=3&q=Product%3DGenerator 第二步:配置自动生成代码所需的XML配置文件,例如(generator.xml)  <?xml version="1.0" ...
js图片滚动
js 产品图片放大预览
Windows版本安装 windows 上安装 memcached ,我的理解是一般用于应用程序测试和开发阶段。一般在 windows 上直接应用 memcached 的比较少。本次功能介绍和学习先用 windows 吧,毕竟环境容易找到些。 下载二进制版本   windows 版本的服务端程序在官方网站上没有找到,官网只有源代码版本。为了方便,直接在网上 google 到对应的二进制版本下载 . 这里使用 1.4.4wind32 版本 下载地址: http://downloads.northscale.com/memcached-win32-1.4.4-14.zip ...
Java读取properties文件 使用J2SE API读取Properties文件的六种方法 1。使用java.util.Properties类的load()方法 示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name)); Properties p = new Properties(); p.load(in); 2。使用java.util.Res ...
数据库行列转换   SQLserver 2000 行列转换例子:1.学号,  课程号, 分数sid     cid    mark030611 1000 70030611 1001 80030611 1002 75030611 1003 86030611 1004 70030612 1000 74030612 1001 83030612 1002 75030612 1003 86030612 1004 75030613 1000 75030613 1001 85030613 1002 85030613 1003 86030613 1004 90=>转换为下面形式:sid     100 ...
JavaScript 校验密码强度
Oracle随机函数—dbms_random     1.基础认识   关于这些函数及DBMS_RANDOM包的文件都包含在SQLPlus中:      select text   from all_source       where name = 'DBMS_RANDOM'        and type = 'PACKAGE' order by line;      ◆ TYPE      num_array
           1. Oracle 随机获取10条记录             select * from (select * from table order by dbms_random.value ) where rownum <11   Oracle 随机获取10条记录: select tt.*from (select rownum rn, t.* from table1 t) ttwhere tt.rn in(select trunc(dbms_random.value(1, (select count(*) from table1 )))from dualcon ...

DES加密解密类

    博客分类:
  • java
DES加密解密类
// Format date or time. Date.prototype.format = function(format) { /* * eg:format="yyyy-MM-dd hh:mm:ss"; */ if (!format) { format = "yyyy-MM-dd hh:mm:ss"; } var o = { "M+" : this.getMonth() + 1, // month "d+" : this.getDate(), // day ...
function formatToDollar(num) { num = num.toString().replace(/\$|\,/g, ''); if (isNaN(num)) num = "0"; sign = (num == (num = Math.abs(num))); num = Math.floor(num * 100 + 0.50000000001); cents = num % 100; num = Math.floor(num / 100).toString(); if (cents < 10) cents = ...
1.       创建含有需要类型转化对象的JSP页面(input.jsp,里面表单里含有自定义类) <body>   <h3><font color="red">使用逗号将点的两个坐标分隔开</font></h3>     <s:form action="Register">            <s:textfield name="point" label="point"/>        <s:textfi ...
1. 创建含有需要类型转化对象的JSP页面(input.jsp,里面表单里含有自定义类)<body>  <h3><font color="red">使用逗号将点的两个坐标分隔开</font></h3> <s:form action="Register">   <s:textfield name="point" label="point"/>  <s:textfield name="age" label=&qu ...
Global site tag (gtag.js) - Google Analytics