⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adminuserproset.java

📁 java论坛
💻 JAVA
字号:
package com.laoer.bbscs.web.action;

import javax.servlet.http.*;

import org.apache.struts.action.*;
import com.laoer.bbscs.service.config.*;
import com.laoer.bbscs.web.form.*;
import com.laoer.bbscs.exception.*;

public class AdminUserProSet
    extends Action {

  private SysConfig sysConfig;

  public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request,
                               HttpServletResponse response) {
    AdminUserProSetForm adminUserProSetForm = (AdminUserProSetForm) form;

    ActionMessages messages = new ActionMessages();

    if (adminUserProSetForm.getAction().equalsIgnoreCase("index")) {
      adminUserProSetForm.setAction("save");
      adminUserProSetForm.setCanNotUseNickName(this.getSysConfig().getCanNotUseNickName());
      adminUserProSetForm.setSignMaxLen(this.getSysConfig().getSignMaxLen());
      adminUserProSetForm.setSignUseHtml(this.getSysConfig().getSignUseHtml());
      adminUserProSetForm.setSignUseSmile(this.getSysConfig().getSignUseSmile());
      adminUserProSetForm.setSignUseUBB(this.getSysConfig().getSignUseUBB());
      adminUserProSetForm.setUseSign(this.getSysConfig().getUseSign());
      return mapping.findForward("userProSet");
    }

    if (adminUserProSetForm.getAction().equalsIgnoreCase("save")) {
      this.getSysConfig().setCanNotUseNickName(adminUserProSetForm.getCanNotUseNickName());
      this.getSysConfig().setSignMaxLen(adminUserProSetForm.getSignMaxLen());
      this.getSysConfig().setSignUseHtml(adminUserProSetForm.getSignUseHtml());
      this.getSysConfig().setSignUseSmile(adminUserProSetForm.getSignUseSmile());
      this.getSysConfig().setSignUseUBB(adminUserProSetForm.getSignUseUBB());
      this.getSysConfig().setUseSign(adminUserProSetForm.getUseSign());
      try {
        this.getSysConfig().saveConfigs();
        messages.add("resultMsg", new ActionMessage("bbscs.dataupdate.succeed"));
        this.saveMessages(request, messages);
      }
      catch (SysConfigException ex) {
        messages.add("error.dataupdate.failed", new ActionMessage("error.dataupdate.failed"));
        this.saveErrors(request, messages);
      }
      return mapping.findForward("userProSet");
    }
    return mapping.getInputForward();
  }

  public SysConfig getSysConfig() {
    return sysConfig;
  }

  public void setSysConfig(SysConfig sysConfig) {
    this.sysConfig = sysConfig;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -