`
文章列表
String tags=this.getPublish().getTags();                if (tags.contains(" ")) {            resembleList=new ArrayList<Publish>();            String tag[]=tags.split(" ");            int repeat = 0;            for (int i = 0; i < tag.length; i++) {                List& ...
我的工作原理是这样的, struts2返回一个myJsp.jsp,并属action对象有个String类型的属性,用于传送Json数据到客户端。jsp里有个隐藏域:    <input type="hidden" id="uid" value='<s:property value="jsonString" escape="false" />'/>    其中value属性等号后面一定要用单引号 ' ,因为从服务器的数据里包含双引号。例如:    json数据 jsonString={&q ...
   <bean id="userDAOProxy"         class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">         <property name="transactionManager">             <ref bean="transactionManager" />         </property>       ...
http://www.netingcn.com/update-linux-time.html
C:\Windows\System32\drivers\etc\hosts http://www.zhongdakj.net/news/html/402.html
父窗口为A,A内有B,B要直接调用A里面的一个自定义函数myFunc();   window.parent.myFunc();
MyEclipse设置JSP页面默认编码方式: windows(窗口)-Preferences(首选项)-MyEclipse-Files & Editors-JSP-右侧encoding:设置为ISO10646/Unicode(UTF-8) MyEclipse在Java文件中设置作者、日期等说明:windows(窗口)-Preferences(首选项)-Java-Code Style(代码样式)-Code Templates(代码模版)-右侧Comments(注释)-选择Types(类型)-点击edit(编辑)-输入如下信息 /** * @作者 Jcuckoo * @创建日期 $ ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charse ...
Calendar c=Calendar.getInstance();        int year = c.get(Calendar.YEAR);         int month=c.get(Calendar.MONTH)+1;        int day=c.get(Calendar.DATE);
今天从SVN服务器上down下工程后,发现myeclipse中项目上没有了*号标记,查看文件时,文件后面的版本号 、文件的状态图标等等都不见了。 解决方法如下: windows ->preferences打开如下图所示窗口 Window->Preferences->Appearence->Label Decorations . 把SVN勾上--------------------------------------------------------------------------------   将最底下的SVN选中
方法 描述 Expression.eq 对应SQL的“field=value”表达式 如:Expression.eq(“name”,”zx”); Expression.allEq 方法的参数为一个Map类型对象,包含多个名/值对对应关系,相当于多个

比较大小

int a=5000; int b=5000; a==b; //结果为true Integer a=100; Integer b=100; a==b; //结果为true     Integer a=1000; Integer b=1000; a==b; //结果为false int 比较: 因为int为基本数据类型,比较大小永远比较的是值 Integer 比较: 值的范围在[-128, 127]的时,返回IntegerCache.cache[i + offset]; 值的范围在以范围以外,返回new Integer(i)。  
Alter table user add unique(username);
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8 ...
ALTER TABLE good_booked DROP INDEX good_id;
Global site tag (gtag.js) - Google Analytics