基于J2EE Struts框架的課程設(shè)計(jì)實(shí)訓(xùn)項(xiàng)目——BBS論壇系統(tǒng)——構(gòu)建控制層中實(shí)現(xiàn)頁(yè)面跳轉(zhuǎn)的 Action程序類

上傳人:仙*** 文檔編號(hào):33589418 上傳時(shí)間:2021-10-18 格式:DOC 頁(yè)數(shù):29 大小:225.52KB
收藏 版權(quán)申訴 舉報(bào) 下載
基于J2EE Struts框架的課程設(shè)計(jì)實(shí)訓(xùn)項(xiàng)目——BBS論壇系統(tǒng)——構(gòu)建控制層中實(shí)現(xiàn)頁(yè)面跳轉(zhuǎn)的 Action程序類_第1頁(yè)
第1頁(yè) / 共29頁(yè)
基于J2EE Struts框架的課程設(shè)計(jì)實(shí)訓(xùn)項(xiàng)目——BBS論壇系統(tǒng)——構(gòu)建控制層中實(shí)現(xiàn)頁(yè)面跳轉(zhuǎn)的 Action程序類_第2頁(yè)
第2頁(yè) / 共29頁(yè)
基于J2EE Struts框架的課程設(shè)計(jì)實(shí)訓(xùn)項(xiàng)目——BBS論壇系統(tǒng)——構(gòu)建控制層中實(shí)現(xiàn)頁(yè)面跳轉(zhuǎn)的 Action程序類_第3頁(yè)
第3頁(yè) / 共29頁(yè)

下載文檔到電腦,查找使用更方便

10 積分

下載資源

還剩頁(yè)未讀,繼續(xù)閱讀

資源描述:

《基于J2EE Struts框架的課程設(shè)計(jì)實(shí)訓(xùn)項(xiàng)目——BBS論壇系統(tǒng)——構(gòu)建控制層中實(shí)現(xiàn)頁(yè)面跳轉(zhuǎn)的 Action程序類》由會(huì)員分享,可在線閱讀,更多相關(guān)《基于J2EE Struts框架的課程設(shè)計(jì)實(shí)訓(xùn)項(xiàng)目——BBS論壇系統(tǒng)——構(gòu)建控制層中實(shí)現(xiàn)頁(yè)面跳轉(zhuǎn)的 Action程序類(29頁(yè)珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。

1、楊教授大學(xué)堂 精心創(chuàng)作的優(yōu)秀程序員 職業(yè)提升必讀系列資料 基于J2EE Struts框架的課程設(shè)計(jì)實(shí)訓(xùn)項(xiàng)目——《BBS論壇系統(tǒng)》——構(gòu)建控制層中實(shí)現(xiàn)頁(yè)面跳轉(zhuǎn)的 Action程序類 1.1.1 頁(yè)面跳轉(zhuǎn)的 Action程序類PageForwordAction 1、添加一個(gè)實(shí)現(xiàn)頁(yè)面跳轉(zhuǎn)的 Action類PageForwordAction (1)新建一個(gè)Action類 1) Path為/pageForwordAction 2) 基類:org.apache.struts.actions.DispatchAction 3) 類型:com.px1987.webbbs.action.Pag

2、eForwordAction 4) /WebBBS/WebRoot/WEB-INF/struts-config_pageForward.xml (2)并在parameter中輸入action (3)并為它添加各個(gè) Forward目標(biāo) (4)也就是下面的狀態(tài)

4、name="showIndexContent" path="goWebBBSIndex" />

5、 2、編程該Action類 package com.px1987.webbbs.action; import java.io.UnsupportedEncodingException; import ja

8、va.util.ArrayList; import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apa

9、che.struts.action.ActionMapping; import org.apache.struts.actions.DispatchAction; import org.apache.struts.validator.DynaValidatorForm; import com.px1987.webbbs.constant.WebBankAllConstants; import com.px1987.webbbs.exception.WebBBSException; import com.px1987.webbbs.model.BBSInfoManageInterfac

10、e; import com.px1987.webbbs.model.BBSInfoVO; import com.px1987.webbbs.model.BBSTitleVO; import com.px1987.webbbs.model.UserInfoManageInterface; import com.px1987.webbbs.model.UserInfoVO; public class PageForwordAction extends DispatchAction { BBSInfoManageInterface bbsInfoManagerBean=null;

11、UserInfoManageInterface userInfoManageBean=null; public void setBbsInfoManagerBean(BBSInfoManageInterface bbsInfoManagerBean) { this.bbsInfoManagerBean = bbsInfoManagerBean; } public void setUserInfoManageBean(UserInfoManageInterface userInfoManageBean) { this.userInfoManageBean = userIn

12、foManageBean; } public PageForwordAction() { //本構(gòu)造方法是在利用 Spring IOC獲得目標(biāo)對(duì)象時(shí)被應(yīng)用 super(); } /* String bbsInfoManageBeanClassName=null; String userInfoManageBeanClassName=null; public PageForwordAction() throws WebBBSException{ //本構(gòu)造方法是在利用 可配置化的工廠時(shí)被應(yīng)用 super(); newUserAndBBS

13、ManageBean(); } public void newUserAndBBSManageBean() throws WebBBSException{ bbsInfoManageBeanClassName=ClassNameConfig. getProperty("bbsInfoManageImple.className"); bbsInfoManagerBean=BBSInfoManageFactory.newBBSInfoManageBean( bbsInfoManageBeanClassName); userInfoManageBeanClassNam

14、e= ClassNameConfig.getProperty("userInfoManageImple.className"); userInfoManageBean=UserInfoManageFactory. newUserInfoManageBean(userInfoManageBeanClassName); } */ public ActionForward indexShowPattern_BarMethod(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServle

15、tResponse response){ return mapping.findForward("showIndexContent_BarMethod"); } public ActionForward indexShowPattern_PlainMethod(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response){ return mapping.findForward("showIndexContent_PlainMethod");

16、 } public ActionForward indexLeftMenuBar(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response){ return mapping.findForward("showIndexLeftMenuBar"); } public ActionForward indexSwitchMenu(ActionMapping mapping, ActionForm form, HttpServletR

17、equest request, HttpServletResponse response){ return mapping.findForward("showIndexSwitchMenu"); } public ActionForward indexDefaultContent(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response){ return mapping.findForward("showIndexDefaultCo

18、ntent"); } public ActionForward showIndexContent(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response){ ArrayList titleInfoVOArrayList_10 = null; ArrayList allHothitsBBSInfoVOArrayList = null; int totalCounterOfTitleInfo; int totalCount

19、erOfTodayBBSInfo; int titleCounte=10; //只返回前10個(gè)分類元素對(duì)象 try{ // newUserAndBBSManageBean(); //創(chuàng)建用戶和BBS信息管理業(yè)務(wù)類的對(duì)象實(shí)例 titleInfoVOArrayList_10 = bbsInfoManagerBean.doGetBBSTitleInfo(titleCounte); } catch (WebBBSException e) { request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMess

20、age()); return mapping.findForward("showWebAppError"); } //獲得總的分類數(shù)目 try{ totalCounterOfTitleInfo = bbsInfoManagerBean.doGetTotalBBSTitleInfoCounter(); } catch (WebBBSException e){ request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findFo

21、rward("showWebAppError"); } int hitBBSCounte=10; //只返回前10個(gè)熱門的BBS信息 try{ allHothitsBBSInfoVOArrayList = bbsInfoManagerBean.doGetBBSInfoByHits(hitBBSCounte); } catch (WebBBSException e){ request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.f

22、indForward("showWebAppError"); } /* 下面的代碼是獲得今日帖數(shù)目 */ ArrayList newBBSInfoList = null; String keyText = ""; java.util.Date rightNow = new java.util.Date(); keyText = (1900 + rightNow.getYear()) + "-" + (rightNow.getMonth() + 1) + "-" + rightNow.g

23、etDate(); /* try{ // 此時(shí)在ArrayList中將包含有今天的新貼(BBSInfoVO類型)的對(duì)象集合 newBBSInfoList = bbsInfoManageImple.doGetTodayAllBBSInfo(); } catch (WebBBSException e){ request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); oneRequestDispatcher=request.getRequestDispatcher("/

24、errorDeal/showWebAppError.jsp"); oneRequestDispatcher.forward(request, response); return; } totalCounterOfTodayBBSInfo = newBBSInfoList.size(); */ try { totalCounterOfTodayBBSInfo =bbsInfoManagerBean.doGetTodayAllBBSInfoCount(); } catch (WebBBSExcepti

25、on e){ request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findForward("showWebAppError"); } int totalBBSInfoCounter = 0; try{ totalBBSInfoCounter = bbsInfoManagerBean.doGetTotalBBSInfoCounter(); } catch (WebBBSException e){

26、 request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findForward("showWebAppError"); } int totalUserCounter = 0; try { totalUserCounter = userInfoManageBean.doGetTotalRegisterUserCounter(); } catch (WebBBSException e){ request.s

27、etAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findForward("showWebAppError"); } UserInfoVO oneMaxIDUserInfoVO = null; try{ oneMaxIDUserInfoVO = userInfoManageBean.doGetMaxIDUserInfo(); } catch (WebBBSException e){ request.setAttrib

28、ute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findForward("showWebAppError"); } request.setAttribute("oneMaxIDUserInfoVO", oneMaxIDUserInfoVO); request.setAttribute("totalUserCounter", new Integer(totalUserCounter).toString(

29、)); request.setAttribute("totalBBSInfoCounter", new Integer(totalBBSInfoCounter).toString()); request.setAttribute("titleInfoVOArrayList_10", titleInfoVOArrayList_10); request.setAttribute("totalCounterOfTitleInfo", new In

30、teger(totalCounterOfTitleInfo). toString()); request.setAttribute("totalCounterOfTodayBBSInfo", new Integer(totalCounterOfTodayBBSInfo). toString()); request.setAttribute("allHothitsBBSInfoVOArrayList", allHothitsBBSInfoVOArrayList); return mapping.f

31、indForward("showIndexContent"); } public ActionForward showRegisterForm(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response){ this.saveToken(request); //(1) return mapping.findForward("showRegisterForm"); } public ActionForward show

32、UserLogoutForDWR(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response){ HttpSession session=request.getSession(); session.removeAttribute("oneUserInfoVO"); session.invalidate(); return null; } public ActionForward showUserLogout(ActionM

33、apping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { HttpSession session=request.getSession(); session.removeAttribute("oneUserInfoVO"); // session.invalidate(); request.setAttribute("errorText","您已經(jīng)從本系統(tǒng)中在線退出,因此您將失除所有的權(quán)限。
如果您還需要做其它的行為,請(qǐng)重新

34、登錄!"); return mapping.findForward("showWebAppError"); } public ActionForward showUpdateUserInfo(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { String targetPage=null; HttpSession session=request.getSession(); //下面為跳轉(zhuǎn)到修改用戶的信

35、息的頁(yè)面中 Object oneUserInfoVOObject=session.getAttribute("oneUserInfoVO"); UserInfoVO oneUserInfoVO=(UserInfoVO)oneUserInfoVOObject; Integer type_User_Admin=oneUserInfoVO.getType_User_Admin(); switch(type_User_Admin.intValue()) { case 1: //轉(zhuǎn)到前臺(tái)用戶 targetPage="showUpdateUse

36、rInfo"; break; case 2: //轉(zhuǎn)到后臺(tái)管理員用戶 targetPage="showUpdateAdminUserInfo"; break; } return mapping.findForward(targetPage); } public ActionForward doShowOnLineUserInfo(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse re

37、sponse) { return mapping.findForward("showOnLineUserInfo"); } public ActionForward doGetUserPassWord(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { return mapping.findForward("doGetUserPassWord"); } public ActionForward goSendOrP

38、reView(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { HttpSession session = request.getSession(); UserInfoVO oneUserInfoVO=(UserInfoVO)session.getAttribute("oneUserInfoVO"); String userName=oneUserInfoVO.getUserName(); String userI

39、D=oneUserInfoVO.getId(); DynaValidatorForm pageForwordActionForm = (DynaValidatorForm) form; String bbsTitleID=(String)pageForwordActionForm.get("bbsTitleID"); String bbsTitleText=(String)pageForwordActionForm.get("bbsTitleText"); try{ /** 由于bbsTitleText參數(shù)是通過get方法傳遞來的,因此ActionServl

40、et無法進(jìn)行正確遞編碼轉(zhuǎn)換,需要手動(dòng)轉(zhuǎn)換 */ bbsTitleText=new String(bbsTitleText.getBytes("ISO-8859-1"),"gb2312"); } catch (UnsupportedEncodingException e){ request.setAttribute("errorText", "在PageForwordAction類中showDigestBBSInfo方法出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findForward("showWebApp

41、Error"); } request.setAttribute("userName",userName); request.setAttribute("userID",userID); request.setAttribute("bbsTitleID",bbsTitleID); request.setAttribute("bbsTitleText",bbsTitleText); return mapping.findForward("doSendBBSInfo"); } public ActionForward goReplyOrPreView(Ac

42、tionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { HttpSession session = request.getSession(); UserInfoVO oneUserInfoVO=(UserInfoVO)session.getAttribute("oneUserInfoVO"); String userName=oneUserInfoVO.getUserName(); String userID=oneUser

43、InfoVO.getId(); DynaValidatorForm pageForwordActionForm = (DynaValidatorForm) form; String bbsTitleID=(String)pageForwordActionForm.get("bbsTitleID"); String bbsTitleText=(String)pageForwordActionForm.get("bbsTitleText"); String bbsID=(String)pageForwordActionForm.get("bbsID"); Str

44、ing bbsTitle=(String)pageForwordActionForm.get("bbsTitle"); try{ /** 由于bbsTitleText參數(shù)是通過get方法傳遞來的,因此ActionServlet無法進(jìn)行正確遞編碼轉(zhuǎn)換,需要手動(dòng)轉(zhuǎn)換 */ bbsTitleText=new String(bbsTitleText.getBytes("ISO-8859-1"),"gb2312"); } catch (UnsupportedEncodingException e){ request.setAttribute("errorTex

45、t", "在PageForwordAction類中showDigestBBSInfo方法出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findForward("showWebAppError"); } request.setAttribute("userName",userName); request.setAttribute("userID",userID); request.setAttribute("bbsTitle",bbsTitle); request.setAttribute("bbsID",bbs

46、ID); request.setAttribute("bbsTitleID",bbsTitleID); request.setAttribute("bbsTitleText",bbsTitleText); return mapping.findForward("doReplyBBSInfo"); } public ActionForward doSystemManage(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response

47、) { return mapping.findForward("doSystemManage"); } public ActionForward doReplyBBSInfo(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response){ return mapping.findForward("doReplyBBSInfo"); } public ActionForward showAllClassInfo(ActionMap

48、ping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { // newUserAndBBSManageBean(); //創(chuàng)建用戶和BBS信息管理業(yè)務(wù)類的對(duì)象實(shí)例 ArrayList allBBSTitleVOArrayList=null; try{ allBBSTitleVOArrayList=bbsInfoManagerBean.doGetBBSTitleInfo(); } catch(WebBBSException e)

49、{ request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findForward("showWebAppError"); } request.setAttribute("allBBSTitleVOArrayList",allBBSTitleVOArrayList); return mapping.findForward("showAllBBSClassInfo"); } public ActionForward showAllHotBB

50、SInfo(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { ArrayList allBBSInfoVOList = null; int totalBBSInfoCounter, totalBBSInfoPageCounter; // newUserAndBBSManageBean(); //創(chuàng)建用戶和BBS信息管理業(yè)務(wù)類的對(duì)象實(shí)例 try{ //獲得總數(shù) int hotCounter=1;

51、 totalBBSInfoCounter = bbsInfoManagerBean. doGetTotalHotBBSInfoCounter(hotCounter); } catch (WebBBSException e) { request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findForward("showWebAppError"); } if(totalBBSInfoCounter==0){ request.setA

52、ttribute("errorText", "很對(duì)不起!目前系統(tǒng)中還沒有產(chǎn)生熱門信息帖,我們會(huì)繼續(xù)努力的!"); return mapping.findForward("showWebAppError"); } int currentPage = 1; //當(dāng)前正在顯示的頁(yè)數(shù)目 int firstResult = (currentPage - 1) * WebBankAllConstants.hotBBSCounterPerPageDigit; //根據(jù)當(dāng)前的頁(yè)數(shù)計(jì)算出的開始的行號(hào)(從0 計(jì)數(shù)) totalBBSInfoPageCount

53、er = (totalBBSInfoCounter + WebBankAllConstants.hotBBSCounterPerPageDigit - 1) /WebBankAllConstants.hotBBSCounterPerPageDigit; int actualHotBBSCounterPerPageDigit= WebBankAllConstants.hotBBSCounterPerPageDigit; if (totalBBSInfoCounter < WebBankAllConstants.hotBBS

54、CounterPerPageDigit){ actualHotBBSCounterPerPageDigit = totalBBSInfoCounter; } try{ allBBSInfoVOList = bbsInfoManagerBean. doGetBBSInfoByHits(firstResult,actualHotBBSCounterPerPageDigit); } catch (WebBBSException e){ request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.ge

55、tMessage()); return mapping.findForward("showWebAppError"); } request.setAttribute("allBBSInfoVOList", allBBSInfoVOList); request.setAttribute("totalBBSInfoPageCounter", new Integer(totalBBSInfoPageCounter).toString()); request.setAttribute("currentPage", new Integer(

56、currentPage).toString()); return mapping.findForward("showAllHotBBSInfo"); } public ActionForward showAllBBSInClass(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response){ ArrayList allBBSInfoVOList = null; int totalBBSInfoCounter, totalBBS

57、InfoPageCounter; /* * 本功能是通過get提交的請(qǐng)求,因此不能通過DynaValidatorForm獲得請(qǐng)求的參數(shù),而只能通過request */ String bbsTitleID=request.getParameter("bbsTitleID"); String bbsTitleText=request.getParameter("bbsTitleText"); try{ /** 由于bbsTitleText參數(shù)是通過get方法傳遞來的,因此ActionServlet無法進(jìn)行正確遞編碼轉(zhuǎn)換,需要手動(dòng)轉(zhuǎn)換 */ bbsT

58、itleText=new String(bbsTitleText.getBytes("ISO-8859-1"),"gb2312"); } catch (UnsupportedEncodingException e) { request.setAttribute("errorText", "在PageForwordAction類中showAllBBSInClass方法出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mapping.findForward("showWebAppError"); } // newUserAndBBS

59、ManageBean(); //創(chuàng)建用戶和BBS信息管理業(yè)務(wù)類的對(duì)象實(shí)例 try { //獲得總數(shù) totalBBSInfoCounter = bbsInfoManagerBean. doGetPageTotalBBSInfoCounterByTitleID(Integer.parseInt(bbsTitleID)); } catch (WebBBSException e){ request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mappin

60、g.findForward("showWebAppError"); } int currentPage = 1; //當(dāng)前正在顯示的頁(yè)數(shù)目 //根據(jù)當(dāng)前的頁(yè)數(shù)計(jì)算出的開始的行號(hào)(從0 計(jì)數(shù)) int firstResult = (currentPage - 1) * WebBankAllConstants.objectCounterPerPageDigit; totalBBSInfoPageCounter = (totalBBSInfoCounter + WebBankAllConstants.objectCounte

61、rPerPageDigit - 1) /WebBankAllConstants.objectCounterPerPageDigit; int actualHotBBSCounterPerPageDigit= WebBankAllConstants.hotBBSCounterPerPageDigit; if (totalBBSInfoCounter < WebBankAllConstants.hotBBSCounterPerPageDigit){ actualHotBBSCounterPerPageDigit = totalBBSInfoCounter

62、; } try { allBBSInfoVOList = bbsInfoManagerBean. doGetPageBBSInfoByTitleID(Integer.parseInt(bbsTitleID), firstResult,actualHotBBSCounterPerPageDigit); } catch (WebBBSException e) { request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)誤:" +e.getMessage()); return mappin

63、g.findForward("showWebAppError"); } // 下面的代碼是獲得該分類的完整信息(也包括版主信息) BBSTitleVO oneBBSTitleVO = null; try{ oneBBSTitleVO = bbsInfoManagerBean. doGetBBSTitleInfoByTitleID(Integer.parseInt(bbsTitleID)); } catch (WebBBSException e) { request.setAttribute("errorText", "出現(xiàn)如下的錯(cuò)

64、誤:" +e.getMessage()); return mapping.findForward("showWebAppError"); } request.setAttribute("allBBSInfoVOList", allBBSInfoVOList); request.setAttribute("bbsTitleID", bbsTitleID); request.setAttribute("bbsTitleText", bbsTitleText); request.setAttribute("oneBBSTitleVO", oneBBST

65、itleVO); request.setAttribute("totalBBSInfoPageCounter", new Integer(totalBBSInfoPageCounter).toString()); request.setAttribute("currentPage", new Integer(currentPage).toString()); return mapping.findForward("showAllBBSInClass"); } public ActionForward showOneBBSInfo(ActionMapp

66、ing mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { BBSInfoVO oneBBSInfoVO = null; ArrayList allBBSReplyInfoListByOneBBS = null; DynaValidatorForm pageForwordActionForm = (DynaValidatorForm) form; String bbsID=(String)pageForwordActionForm.get("bbsID"); //獲得該BBS的ID號(hào) //獲得該BBS所在的分類的標(biāo)題文字 String bbsTitleText=(String)pageForwordActionForm.get("bbsTitleText"); //獲得該BBS所在的分類的ID String bbsTitleID=(String)pageForwordActionForm.

展開閱讀全文
溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號(hào):ICP2024067431號(hào)-1 川公網(wǎng)安備51140202000466號(hào)


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺(tái),本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng),我們立即給予刪除!