`
文章列表
java -XshowSettings:vm -version java -XshowSettings:properties -version java -XshowSettings:locale -version
<a id="alink" href="abc.aspx" style="visibility: hidden;">下一步</a>  $("#alink").click(); // 触发了a标签的点击事件,但是没有触发页面跳转  document.getElementById("alink").click(); //既触发了a标签的点击事件,又触发了页面跳转    把 “下一步” 改为 “<span id="spanId">下一步& ...
Bootstrap 开关(switch)控件 http://www.bootcss.com/p/bootstrap-switch/ https://github.com/Bttstrp/bootstrap-switch $(function(){ $("#mySwitch").bootstrapSwitch({ state:true, size:'large', onColor:'success', offC ...
bootstrapvalidator 验证框架 https://github.com/nghuuphuoc/bootstrapvalidator/ 1、resetForm $('#resetBtn').click(function() { $('#defaultForm').data('bootstrapValidator').resetForm(true); });    2、属性校验   <input type="text" class="form-control" name="userna ...
Bootstrap Table 表格控件 https://github.com/wenzhixin/bootstrap-table
bootstrap-treeview 树形菜单控件 https://github.com/jonmiles/bootstrap-treeview var tree = [ { text: "Parent 1", id:1, nodes: [ { text: "Child 1", id ...
java.lang.Class.isPrimitive() 确定指定的Class对象表示一个基本类型。有九种预定义的Class对象代表的八个基本类型和void。这些都是由Java虚拟机创建的,并且具有相同的名称,它们代表即boolean, byte, char, short, int, long, float, 和double 等原始类型。 if (String.class.isPrimitive()) { System.out.println("基本数据类型"); } else { System.out.println("引用数据类 ...
//instanceof关键字用于判断一个引用类型变量所指向的对象是否是一个类(或接口、抽象类、父类)的实例 if(new Date() instanceof Date) { System.out.println("yes1"); } if(new Date() instanceof Comparable) { System.out.println("yes2"); } if(new SimpleDateFormat() instanceof DateFormat) { ...
CREATE FUNCTION fn_get_child(rootId INT,deep INT) RETURNS varchar(4000) CHARSET utf8 #rootId为你要查询的节点 #deep 为你要查询的层级 BEGIN #声明两个临时变量 DECLARE temp VARCHAR(4000); DECLARE temp_child VARCHAR(4000); DECLARE n INT DEFAULT 2; SET temp = '$'; SET temp_child = CAST(rootId AS CHAR);#把rootId强制转换为字符 SET ...
Bootstrap中文网 http://www.bootcss.com/ Bootstrap表单构造器 http://www.bootcss.com/p/bootstrap-form-builder/ Bootstrap可视化布局系统 http://www.bootcss.com/p/layoutit/ http://www.ibootstrap.cn/

枚举Enum

    博客分类:
  • JAVA
  Enum 枚举类不能继承   public interface EnumInerface<I, S> { I getValue(); S getName(); }   public enum TestEnums implements EnumInerface<Integer, String> { ONE(1, "一"), TWO(2, "二"); private Integer value; private String name; private TestEnums( ...
1、首字母大写 // 首字母转大写 public static String toUpperCaseFirstOne(String s) { if (Character.isUpperCase(s.charAt(0))) { return s; } else { return (new StringBuilder()).append(Character.toUpperCase(s.charAt(0))).append(s.substring(1)).toString(); } } // 首字母转大写 public static Str ...

Java 反射

    博客分类:
  • JAVA
一、实例化Class类对象的三种方式 1、Class<?> c1 = Class.forName("com.test.Test");// 2、Class<?> c2 = Test.class; //通过类.class实例化 3、Class<?> c3 = new Test().getClass(); //通过Object类中的方法实例化  二、通过 Class 获取类属性字段 Field[] fields = c1.getFields(); 三、获取方法 Method[] methods = c1.getMethods() ...
1、like查询 like CONCAT('%',#{name},'%')  2、特殊字符 如 < select * from test where <![CDATA[ id < 10]]>
1、相关jar包 <!-- mybatis生成 jar包 --> <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.3.2</version> </dependency> <!-- oracle jar包 --> <dependency> ...
Global site tag (gtag.js) - Google Analytics