复制内容到剪贴板 程序代码
String tagid = "{8}{15}{16}{20}{22}{25}";
List<Integer> lst = new ArrayList<Integer>();
Pattern p = Pattern.compile("\\{(\\d+)\\}");
Matcher m = p.matcher(tagid);
while (m.find()) {
lst.add(Integer.parseInt(m.group(1)));
}
for (int num : lst) {
List<Integer> lst = new ArrayList<Integer>();
Pattern p = Pattern.compile("\\{(\\d+)\\}");
Matcher m = p.matcher(tagid);
while (m.find()) {
lst.add(Integer.parseInt(m.group(1)));
}
for (int num : lst) {
被自己的粗心大意忙活了一上午,结果是笔误,如下程序,是一个判断要求,父分类不能移动到子分类中:
复制内容到剪贴板 程序代码
public boolean checkJieDian(Catalog catalogNow, Catalog catalogMove) {
CatalogService s = new CatalogService();
if(catalogMove==null){
log.info("最后还是没有找到,那么就返回");
return true;
CatalogService s = new CatalogService();
if(catalogMove==null){
log.info("最后还是没有找到,那么就返回");
return true;
用jsp输出的页面的代码不美观,经常代码一开始就输出很多空行,很不好看,所以要去掉这些空行,让代码也像页面一样的美观^_^。
在jsp 中只要是有< % %>就会输出至少一行空白。采用非ui标签也会输出空行。
现在有和零时的比较笨方案就是用在 < % %> 、非ui标签 后添加< %out.clear(); %> 就可以去掉这些空行了。
比如:
在jsp 中只要是有< % %>就会输出至少一行空白。采用非ui标签也会输出空行。
现在有和零时的比较笨方案就是用在 < % %> 、非ui标签 后添加< %out.clear(); %> 就可以去掉这些空行了。
比如:
复制内容到剪贴板 程序代码
< %@ page contentType="text/html; charset=utf-8"%>
< %@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator"%>
< %@ taglib uri="http://www.opensymphony.com/sitemesh/page" prefix="page"%>
< %@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator"%>
< %@ taglib uri="http://www.opensymphony.com/sitemesh/page" prefix="page"%>
今天在eclipse+myeclipse+tomcat5 下,写个中文乱码转码filter,就报
2007-3-13 17:43:46 org.apache.catalina.core.StandardContext start
严重: Error filterStart
2007-3-13 17:43:46 org.apache.catalina.core.StandardContext start
严重: Context startup failed due to previous errors
错误,所属项目也就启动不了,web。xml配置为 :
<filter>
<filter-name>CharsetEncodingFilter</filter-name>
<filter-class>com.changyou.filter.CharsetEncodingFilter</filter-class>
2007-3-13 17:43:46 org.apache.catalina.core.StandardContext start
严重: Error filterStart
2007-3-13 17:43:46 org.apache.catalina.core.StandardContext start
严重: Context startup failed due to previous errors
错误,所属项目也就启动不了,web。xml配置为 :
<filter>
<filter-name>CharsetEncodingFilter</filter-name>
<filter-class>com.changyou.filter.CharsetEncodingFilter</filter-class>
Tags: TOMCAT