摘要: 数据库: Oracle10错误: 每次点击进入 PlSql 后,输入帐号密码,然后登陆,都会报出 Not Logged on 。环境: win7解决办法: 运行 plsqldev.exe 时,以管理员用户运行。 阅读全文
posted @ 2015-10-20 10:34 FansZone 阅读(4700) 评论(0) 推荐(0) 编辑
摘要: IE7下iframe height="100%"无效的解决方法就是css如下写法: 1 2 3 4 5 iframe 100% Height 6 11 12 13 14 15 16 阅读全文
posted @ 2014-10-28 01:19 FansZone 阅读(791) 评论(0) 推荐(0) 编辑
摘要: 一. 策略模式定义:策略模式定义了一系列的算法,并将每一个算法封装起来,而且使它们还可以相互替换。策略模式让算法独立于使用它的客户而独立变化。先说这个场景中的要素:三个妙计,一个锦囊,一个赵云。1)妙计:(一个接口,三个具体妙计)1 package com.henry.strategy;2 3 pu... 阅读全文
posted @ 2014-10-14 16:15 FansZone 阅读(416) 评论(0) 推荐(1) 编辑
摘要: Fast json 介绍 Fastjson是一个 Java 语言编写的JSON 处理器 , 由 阿里巴巴 公司开发。 1、遵循 http://json.org 标准,为其官方 网站收录 的参考实现之一。 2、功能 qiang 打,支持 JDK 的各种类型,包括基本的 JavaBean 、 Collection 、 Map 、 Date 、 Enum 、泛型。 3、无依赖,不需要例外额外的 jar ,能够直接跑在 JDK 上。 4、 开源 ,使用ApacheLicense2.0 协议开源。 http://code.alibabatech. com /wiki/display/FastJSON/H 阅读全文
posted @ 2014-03-28 15:48 FansZone 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 转载地址:http://www.blogjava.net/maverick1003/articles/236575.html 阅读全文
posted @ 2014-02-26 14:41 FansZone 阅读(116) 评论(0) 推荐(0) 编辑
摘要: $(document).ready(function(){ $('div').click(function(){ $(this).effect('explode'); //散开 $(this).effect('bounce', {times:3}, 500); //抖三下 $(this).effect('slide'); //划过 });}); 阅读全文
posted @ 2014-01-29 12:52 FansZone 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 Slide Panel 5 6 7 8 9 10 11 12 Now you see me!13 14 Slide Up/Down15 16 1 body { 2 margin:0 auto; 3 padding:0; 4 width:200px; 5 text-align:center; 6 } 7 .pull-me{ 8 -webkit-box... 阅读全文
posted @ 2014-01-24 14:47 FansZone 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 jQuery validation plug-in - main demo 6 7 8 9 10 61 62 63 64 65 66 67 Validating a complete form 68 69 Firstname 70 71 72 73 Lastname 74 75 76 77 Username 78 79 80 81 Password 82 83 84 85 Confirm passwor... 阅读全文
posted @ 2013-10-23 13:34 FansZone 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: 网维点餐系统 订单 新增订单 桌台信息管理 桌台信息管理 ... 阅读全文
posted @ 2013-08-19 19:12 FansZone 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 1 package com.wteam.pojo; 2 3 public class Test { 4 public static void main(String args[]){ 5 double f = 1000.095; 6 // BigDecimal price = new BigDecimal(Double.toString(f)); 7 java.text.DecimalFormat df=new java.text.DecimalFormat("0.00"); 8 System.out.println(d... 阅读全文
posted @ 2013-07-10 23:00 FansZone 阅读(206) 评论(0) 推荐(0) 编辑