`
文章列表

extJs 常用语法1

生成树,并进行过滤,并且最后去掉监听器 var ctree = initDeployRelationTree(treeLoader); var f = function(n) { console.log(n.text); if (n.hasChildNodes() == false) { if (n.getUI().checkbox != null) { n.getUI().show(); filter(n); } else { n.getUI().hide(); } } else { n.getUI().hide(); } }; ...

java 基础

    博客分类:
  • java
移除元素 list.remove(index); list.clear(); 字符串两种分隔方法 String s = new String("2_8_7_4_3_9_1"); String[] arr = s.split("_"); 利用StringTokenizer类: String s = new String("2_8_7_4_3_9_1"); StringTokenizer commaToker = new StringTokenizer(s, "_"); String[] a ...

jsp基础

    博客分类:
  • jsp
1,隐藏域<input type="hidden" name=" " value=" "> 2,只读属性disabled= "ture" 3,redio  name属性设置成相同 <input type="radio" name="sex" value="male" />男 <input type="radio" name="sex" value="female" ...
  转自 : http://qinweiping.iteye.com/blog/1309963 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD>   <TITLE> JavaScript的数组 </TITLE>   <META NAME="Content-Type" CONTENT="text/html;charset=utf-8">   <META ...
转载:http://gocom.cc/knowledge/soa/standard/2386.html    Apache CXF Web服务栈建立在与本系列早期文章讨论的Apache Axis2及Metro栈相同的一些技术的基础之上。与Axis2类似,它使用 Apache WSS4J WS-Security 实现。与Metro类似,它主要使用 JAX-WS 2.x Web ...
导入各种需要的jar 服务器端: web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="2.5" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http ...
Global site tag (gtag.js) - Google Analytics