摘要:
错误语句:select id,name from s1 order by stime union all select id,name from s2 order by stime 报错原因:oracle 搜索到order by后认为整个select语句就该结束了但是后面还有union all所以数 阅读全文
摘要:
jdk版本要大于tomcat版本。不然tomcat起不来 tomcat v7.0 support >Java EE 5 and 6 tomcat v8.0 support >Java EE 5,6 and 7 tomcat v8.5 support >Java EE 5,6 and 7 tomcat 阅读全文
摘要:
String转int String str = "11"; int a = Integer.parseInt(str); int转String int i = 12; s=String.valueOf(i); String转Double String a = "10"; Double d = Dou 阅读全文