?? star.java
字號(hào):
package com.laoer.bbscs.web.action;
import com.laoer.bbscs.web.form.*;
import com.laoer.bbscs.web.servlet.*;
import com.laoer.bbscs.bean.*;
import com.laoer.bbscs.sys.*;
import com.laoer.comm.util.*;
import org.apache.struts.action.*;
import javax.servlet.http.*;
/**
* <p>Title: TianYi BBS</p>
* <p>Description: TianYi BBS System</p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: LAOER.COM/TIANYISOFT.NET</p>
* @author laoer
* @version 6.0
*/
public class Star
extends BaseAction {
public ActionForward execute(ActionMapping actionMapping,
ActionForm actionForm,
HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse) {
ActionErrors errors = new ActionErrors();
UserInfoForm form = (UserInfoForm) actionForm;
UserCheck uc = this.getUserCheck(httpServletRequest, httpServletResponse);
if (uc.isGuest()) {
errors.add("error.pleaselogin", new ActionError("error.pleaselogin"));
saveErrors(httpServletRequest, errors);
//return actionMapping.findForward("login");
return SysUtil.getPassLogin(actionMapping);
}
if (! (uc.isSuperAdmin() || uc.isUserAdmin())) {
errors.add("error.purviewerror", new ActionError("error.purviewerror"));
saveErrors(httpServletRequest, errors);
return actionMapping.findForward("error");
}
UserInfo ui = getUserInfoService().findUserInfoById(new Long(form.getId()));
if (ui.getHavePic() == 0 || ui.getPicFileName() == null ||
ui.getPicFileName().length() == 0) {
errors.add("error.addstar", new ActionError("error.addstar"));
saveErrors(httpServletRequest, errors);
return actionMapping.findForward("error");
}
StringBuffer sb = new StringBuffer();
sb.append(
"<table width=\"100%\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\">\n");
sb.append("<tr>\n<td>\n<div align=\"center\">\n");
sb.append("<a href='");
sb.append(SysUtil.getUserFileWebPath(ui.getUsername(), ui.getId().longValue()));
sb.append(ui.getPicFileName());
sb.append("' target='_blank'><img src='");
sb.append(SysUtil.getUserFileWebPath(ui.getUsername(), ui.getId().longValue()));
sb.append(ui.getPicFileName());
sb.append("' id='upic_");
sb.append(ui.getId().longValue());
sb.append("' name='upic_");
sb.append(ui.getId().longValue());
sb.append("' border='0' class='PIC1' ");
sb.append("width='");
sb.append(SysInfo.getInstance().getFacewith());
sb.append("' height='");
sb.append(SysInfo.getInstance().getFacehigh());
sb.append("'>");
/*
sb.append("onload='javascript:if(this.width>");
sb.append(SysInfo.getInstance().getFacewith());
sb.append("){this.width=");
sb.append(SysInfo.getInstance().getFacewith());
sb.append("}if(this.height>");
sb.append(SysInfo.getInstance().getFacehigh());
sb.append("){this.height=");
sb.append(SysInfo.getInstance().getFacehigh());
sb.append("}'>");*/
sb.append("</a>");
sb.append("</div></td>\n</tr>\n<tr>\n<td>\n");
sb.append("<div align=\"center\">");
sb.append("<a href='userInfo" + Constant.FILEPREFIX + "?t=id&id=");
sb.append(ui.getId().longValue());
sb.append("'>");
sb.append(ui.getUsername());
sb.append("</a></div>\n</td>\n</tr>\n<tr>\n<td>\n");
sb.append("<div align=\"center\">");
sb.append("<a href='notedo" + Constant.FILEPREFIX + "?action=new&fname=");
sb.append(ui.getUsername());
sb.append("'>#note#");
sb.append("</a></div>\n</td>\n</tr>\n</table>\n");
FileIO.writeFile(sb.toString(),
SysUtil.getIncludeFilePath() + Constant.STARFILE,
Constant.CHARSET);
ActionForward f = new ActionForward("/in" + Constant.FILEPREFIX, true);
return f;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -