歡迎來到裝配圖網(wǎng)! | 幫助中心 裝配圖網(wǎng)zhuangpeitu.com!
裝配圖網(wǎng)
ImageVerifierCode 換一換
首頁 裝配圖網(wǎng) > 資源分類 > DOC文檔下載  

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

  • 資源ID:33589418       資源大?。?span id="rkq3zti" class="font-tahoma">225.52KB        全文頁數(shù):29頁
  • 資源格式: DOC        下載積分:10積分
快捷下載 游客一鍵下載
會員登錄下載
微信登錄下載
三方登錄下載: 微信開放平臺登錄 支付寶登錄   QQ登錄   微博登錄  
二維碼
微信掃一掃登錄
下載資源需要10積分
郵箱/手機:
溫馨提示:
用戶名和密碼都是您填寫的郵箱或者手機號,方便查詢和重復(fù)下載(系統(tǒng)自動生成)
支付方式: 支付寶    微信支付   
驗證碼:   換一換

 
賬號:
密碼:
驗證碼:   換一換
  忘記密碼?
    
友情提示
2、PDF文件下載后,可能會被瀏覽器默認打開,此種情況可以點擊瀏覽器菜單,保存網(wǎng)頁到桌面,就可以正常下載了。
3、本站不支持迅雷下載,請使用電腦自帶的IE瀏覽器,或者360瀏覽器、谷歌瀏覽器下載即可。
4、本站資源下載后的文檔和圖紙-無水印,預(yù)覽文檔經(jīng)過壓縮,下載后原文更清晰。
5、試題試卷類文檔,如果標題沒有明確說明有答案則都視為沒有答案,請知曉。

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

楊教授大學(xué)堂 精心創(chuàng)作的優(yōu)秀程序員 職業(yè)提升必讀系列資料基于J2EE Struts框架的課程設(shè)計實訓(xùn)項目BBS論壇系統(tǒng)構(gòu)建控制層中實現(xiàn)頁面跳轉(zhuǎn)的 Action程序類1.1.1 頁面跳轉(zhuǎn)的 Action程序類PageForwordAction1、添加一個實現(xiàn)頁面跳轉(zhuǎn)的 Action類PageForwordAction(1)新建一個Action類1) Path為/pageForwordAction2) 基類:org.apache.struts.actions.DispatchAction3) 類型:com.px1987.webbbs.action.PageForwordAction4) /WebBBS/WebRoot/WEB-INF/struts-config_pageForward.xml(2)并在parameter中輸入action(3)并為它添加各個 Forward目標(4)也就是下面的狀態(tài)<action parameter="action" path="/pageForwordAction" type="com.px1987.webbbs.action.PageForwordAction" > <forward name="showRegisterForm" path="goShowRegisterForm" /> <!- 直接采用Tiles中的定義名稱作為 path的目標 -> <forward name="showWebAppError" path="goShowWebAppError" /> <forward name="doSystemManage" path="goSystemManage" /> <forward name="showAllBBSClassInfo" path="goShowAllBBSClassInfo" /> <forward name="showIndexContent" path="goWebBBSIndex" /> <forward name="showUpdateUserInfo" path="goShowUpdateUserInfo" /> <forward name="showUpdateAdminUserInfo" path="goShowUpdateAdminUserInfo" /> <forward name="showOnLineUserInfo" path="goShowOnLineUserInfo" /> <forward name="doGetUserPassWord" path="goGetUserPassWord" /> <forward name="doSendBBSInfo" path="goSendBBSInfo" /> <forward name="doReplyBBSInfo" path="goReplyBBSInfo" /> <forward name="showAllHotBBSInfo" path="goShowAllHotBBSInfo" /> <forward name="showAllBBSInClass" path="goShowAllBBSInClass" /> <forward name="showOneBBSInfo" path="goShowOneBBSInfo" /> <forward name="showLoginUserAllBBSInfo" path="goShowLoginUserAllBBSInfo" /> <forward name="showAllBBSInfoByReplyUserInfo" path="goShowAllBBSInfoByReplyUserInfo" /> <forward name="showNewBBSInfo" path="goShowNewBBSInfo" /> <forward name="showPrevelInfo" path="goShowPrevelInfo" /> <forward name="showTitleLeaderInfo" path="goShowTitleLeaderInfo" /> </action>2、編程該Action類package com.px1987.webbbs.action;import java.io.UnsupportedEncodingException;import java.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.apache.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.BBSInfoManageInterface;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;UserInfoManageInterface userInfoManageBean=null;public void setBbsInfoManagerBean(BBSInfoManageInterface bbsInfoManagerBean) this.bbsInfoManagerBean = bbsInfoManagerBean;public void setUserInfoManageBean(UserInfoManageInterface userInfoManageBean) this.userInfoManageBean = userInfoManageBean;public PageForwordAction() /本構(gòu)造方法是在利用 Spring IOC獲得目標對象時被應(yīng)用super();/* String bbsInfoManageBeanClassName=null;String userInfoManageBeanClassName=null;public PageForwordAction() throws WebBBSException /本構(gòu)造方法是在利用 可配置化的工廠時被應(yīng)用super();newUserAndBBSManageBean();public void newUserAndBBSManageBean() throws WebBBSExceptionbbsInfoManageBeanClassName=ClassNameConfig.getProperty("bbsInfoManageImple.className");bbsInfoManagerBean=BBSInfoManageFactory.newBBSInfoManageBean(bbsInfoManageBeanClassName);userInfoManageBeanClassName=ClassNameConfig.getProperty("userInfoManageImple.className");userInfoManageBean=UserInfoManageFactory.newUserInfoManageBean(userInfoManageBeanClassName);*/public ActionForward indexShowPattern_BarMethod(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)return mapping.findForward("showIndexContent_BarMethod");public ActionForward indexShowPattern_PlainMethod(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)return mapping.findForward("showIndexContent_PlainMethod");public ActionForward indexLeftMenuBar(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)return mapping.findForward("showIndexLeftMenuBar");public ActionForward indexSwitchMenu(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)return mapping.findForward("showIndexSwitchMenu");public ActionForward indexDefaultContent(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)return mapping.findForward("showIndexDefaultContent");public ActionForward showIndexContent(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)ArrayList titleInfoVOArrayList_10 = null;ArrayList allHothitsBBSInfoVOArrayList = null;int totalCounterOfTitleInfo;int totalCounterOfTodayBBSInfo;int titleCounte=10;/只返回前10個分類元素對象try/newUserAndBBSManageBean();/創(chuàng)建用戶和BBS信息管理業(yè)務(wù)類的對象實例titleInfoVOArrayList_10 = bbsInfoManagerBean.doGetBBSTitleInfo(titleCounte); catch (WebBBSException e) request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");/獲得總的分類數(shù)目trytotalCounterOfTitleInfo = bbsInfoManagerBean.doGetTotalBBSTitleInfoCounter(); catch (WebBBSException e)request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");int hitBBSCounte=10;/只返回前10個熱門的BBS信息tryallHothitsBBSInfoVOArrayList = bbsInfoManagerBean.doGetBBSInfoByHits(hitBBSCounte); catch (WebBBSException e)request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");/* 下面的代碼是獲得今日帖數(shù)目*/ ArrayList newBBSInfoList = null; String keyText = "" java.util.Date rightNow = new java.util.Date(); keyText = (1900 + rightNow.getYear() + "-" + (rightNow.getMonth() + 1) + "-" + rightNow.getDate();/* try/此時在ArrayList中將包含有今天的新貼(BBSInfoVO類型)的對象集合 newBBSInfoList = bbsInfoManageImple.doGetTodayAllBBSInfo(); catch (WebBBSException e)request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage();oneRequestDispatcher=request.getRequestDispatcher("/errorDeal/showWebAppError.jsp"); oneRequestDispatcher.forward(request, response); return; totalCounterOfTodayBBSInfo = newBBSInfoList.size();*/ try totalCounterOfTodayBBSInfo =bbsInfoManagerBean.doGetTodayAllBBSInfoCount(); catch (WebBBSException e)request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError"); int totalBBSInfoCounter = 0; try totalBBSInfoCounter = bbsInfoManagerBean.doGetTotalBBSInfoCounter(); catch (WebBBSException e)request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError"); int totalUserCounter = 0; try totalUserCounter = userInfoManageBean.doGetTotalRegisterUserCounter(); catch (WebBBSException e)request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError"); UserInfoVO oneMaxIDUserInfoVO = null; try oneMaxIDUserInfoVO = userInfoManageBean.doGetMaxIDUserInfo(); catch (WebBBSException e)request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError"); request.setAttribute("oneMaxIDUserInfoVO", oneMaxIDUserInfoVO); request.setAttribute("totalUserCounter", new Integer(totalUserCounter).toString(); request.setAttribute("totalBBSInfoCounter", new Integer(totalBBSInfoCounter).toString(); request.setAttribute("titleInfoVOArrayList_10", titleInfoVOArrayList_10); request.setAttribute("totalCounterOfTitleInfo", new Integer(totalCounterOfTitleInfo). toString(); request.setAttribute("totalCounterOfTodayBBSInfo", new Integer(totalCounterOfTodayBBSInfo). toString(); request.setAttribute("allHothitsBBSInfoVOArrayList",allHothitsBBSInfoVOArrayList);return mapping.findForward("showIndexContent");public ActionForward showRegisterForm(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)this.saveToken(request); /(1)return mapping.findForward("showRegisterForm");public ActionForward showUserLogoutForDWR(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) HttpSession session=request.getSession(); session.removeAttribute("oneUserInfoVO"); session.invalidate(); return null;public ActionForward showUserLogout(ActionMapping 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)限。<br>如果您還需要做其它的行為,請重新登錄!"); return mapping.findForward("showWebAppError");public ActionForward showUpdateUserInfo(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) String targetPage=null; HttpSession session=request.getSession();/下面為跳轉(zhuǎn)到修改用戶的信息的頁面中 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)到前臺用戶 targetPage="showUpdateUserInfo" break; case 2: /轉(zhuǎn)到后臺管理員用戶 targetPage="showUpdateAdminUserInfo" break; return mapping.findForward(targetPage);public ActionForward doShowOnLineUserInfo(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) return mapping.findForward("showOnLineUserInfo");public ActionForward doGetUserPassWord(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) return mapping.findForward("doGetUserPassWord");public ActionForward goSendOrPreView(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) HttpSession session = request.getSession();UserInfoVO oneUserInfoVO=(UserInfoVO)session.getAttribute("oneUserInfoVO");String userName=oneUserInfoVO.getUserName();String userID=oneUserInfoVO.getId();DynaValidatorForm pageForwordActionForm = (DynaValidatorForm) form;String bbsTitleID=(String)pageForwordActionForm.get("bbsTitleID");String bbsTitleText=(String)pageForwordActionForm.get("bbsTitleText");try /*由于bbsTitleText參數(shù)是通過get方法傳遞來的,因此ActionServlet無法進行正確遞編碼轉(zhuǎn)換,需要手動轉(zhuǎn)換*/bbsTitleText=new String(bbsTitleText.getBytes("ISO-8859-1"),"gb2312"); catch (UnsupportedEncodingException e)request.setAttribute("errorText", "在PageForwordAction類中showDigestBBSInfo方法出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");request.setAttribute("userName",userName);request.setAttribute("userID",userID);request.setAttribute("bbsTitleID",bbsTitleID);request.setAttribute("bbsTitleText",bbsTitleText);return mapping.findForward("doSendBBSInfo");public ActionForward goReplyOrPreView(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) HttpSession session = request.getSession();UserInfoVO oneUserInfoVO=(UserInfoVO)session.getAttribute("oneUserInfoVO");String userName=oneUserInfoVO.getUserName();String userID=oneUserInfoVO.getId();DynaValidatorForm pageForwordActionForm = (DynaValidatorForm) form;String bbsTitleID=(String)pageForwordActionForm.get("bbsTitleID");String bbsTitleText=(String)pageForwordActionForm.get("bbsTitleText");String bbsID=(String)pageForwordActionForm.get("bbsID");String bbsTitle=(String)pageForwordActionForm.get("bbsTitle");try /*由于bbsTitleText參數(shù)是通過get方法傳遞來的,因此ActionServlet無法進行正確遞編碼轉(zhuǎn)換,需要手動轉(zhuǎn)換*/bbsTitleText=new String(bbsTitleText.getBytes("ISO-8859-1"),"gb2312"); catch (UnsupportedEncodingException e)request.setAttribute("errorText", "在PageForwordAction類中showDigestBBSInfo方法出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");request.setAttribute("userName",userName);request.setAttribute("userID",userID);request.setAttribute("bbsTitle",bbsTitle);request.setAttribute("bbsID",bbsID);request.setAttribute("bbsTitleID",bbsTitleID);request.setAttribute("bbsTitleText",bbsTitleText);return mapping.findForward("doReplyBBSInfo");public ActionForward doSystemManage(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) return mapping.findForward("doSystemManage");public ActionForward doReplyBBSInfo(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)return mapping.findForward("doReplyBBSInfo");public ActionForward showAllClassInfo(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) /newUserAndBBSManageBean();/創(chuàng)建用戶和BBS信息管理業(yè)務(wù)類的對象實例ArrayList allBBSTitleVOArrayList=null;tryallBBSTitleVOArrayList=bbsInfoManagerBean.doGetBBSTitleInfo();catch(WebBBSException e) request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");request.setAttribute("allBBSTitleVOArrayList",allBBSTitleVOArrayList);return mapping.findForward("showAllBBSClassInfo");public ActionForward showAllHotBBSInfo(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) ArrayList allBBSInfoVOList = null;int totalBBSInfoCounter, totalBBSInfoPageCounter;/newUserAndBBSManageBean();/創(chuàng)建用戶和BBS信息管理業(yè)務(wù)類的對象實例try /獲得總數(shù) int hotCounter=1; totalBBSInfoCounter = bbsInfoManagerBean.doGetTotalHotBBSInfoCounter(hotCounter); catch (WebBBSException e) request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");if(totalBBSInfoCounter=0)request.setAttribute("errorText", "很對不起!目前系統(tǒng)中還沒有產(chǎn)生熱門信息帖,我們會繼續(xù)努力的!"); return mapping.findForward("showWebAppError"); int currentPage = 1; /當(dāng)前正在顯示的頁數(shù)目 int firstResult = (currentPage - 1) * WebBankAllConstants.hotBBSCounterPerPageDigit; /根據(jù)當(dāng)前的頁數(shù)計算出的開始的行號(從0 計數(shù)) totalBBSInfoPageCounter = (totalBBSInfoCounter + WebBankAllConstants.hotBBSCounterPerPageDigit - 1) /WebBankAllConstants.hotBBSCounterPerPageDigit; int actualHotBBSCounterPerPageDigit=WebBankAllConstants.hotBBSCounterPerPageDigit; if (totalBBSInfoCounter < WebBankAllConstants.hotBBSCounterPerPageDigit) actualHotBBSCounterPerPageDigit = totalBBSInfoCounter; tryallBBSInfoVOList = bbsInfoManagerBean.doGetBBSInfoByHits(firstResult,actualHotBBSCounterPerPageDigit);catch (WebBBSException e) request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");request.setAttribute("allBBSInfoVOList", allBBSInfoVOList);request.setAttribute("totalBBSInfoPageCounter",new Integer(totalBBSInfoPageCounter).toString();request.setAttribute("currentPage", new Integer(currentPage).toString();return mapping.findForward("showAllHotBBSInfo");public ActionForward showAllBBSInClass(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)ArrayList allBBSInfoVOList = null;int totalBBSInfoCounter, totalBBSInfoPageCounter;/* * 本功能是通過get提交的請求,因此不能通過DynaValidatorForm獲得請求的參數(shù),而只能通過request */String bbsTitleID=request.getParameter("bbsTitleID");String bbsTitleText=request.getParameter("bbsTitleText");try /*由于bbsTitleText參數(shù)是通過get方法傳遞來的,因此ActionServlet無法進行正確遞編碼轉(zhuǎn)換,需要手動轉(zhuǎn)換*/bbsTitleText=new String(bbsTitleText.getBytes("ISO-8859-1"),"gb2312"); catch (UnsupportedEncodingException e) request.setAttribute("errorText", "在PageForwordAction類中showAllBBSInClass方法出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");/newUserAndBBSManageBean();/創(chuàng)建用戶和BBS信息管理業(yè)務(wù)類的對象實例try /獲得總數(shù) totalBBSInfoCounter = bbsInfoManagerBean.doGetPageTotalBBSInfoCounterByTitleID(Integer.parseInt(bbsTitleID); catch (WebBBSException e) request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError"); int currentPage = 1; /當(dāng)前正在顯示的頁數(shù)目/根據(jù)當(dāng)前的頁數(shù)計算出的開始的行號(從0 計數(shù)) int firstResult = (currentPage - 1) * WebBankAllConstants.objectCounterPerPageDigit; totalBBSInfoPageCounter = (totalBBSInfoCounter + WebBankAllConstants.objectCounterPerPageDigit - 1) /WebBankAllConstants.objectCounterPerPageDigit; int actualHotBBSCounterPerPageDigit=WebBankAllConstants.hotBBSCounterPerPageDigit; if (totalBBSInfoCounter < WebBankAllConstants.hotBBSCounterPerPageDigit) actualHotBBSCounterPerPageDigit = totalBBSInfoCounter; try allBBSInfoVOList = bbsInfoManagerBean.doGetPageBBSInfoByTitleID(Integer.parseInt(bbsTitleID), firstResult,actualHotBBSCounterPerPageDigit);catch (WebBBSException e) request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");/下面的代碼是獲得該分類的完整信息(也包括版主信息)BBSTitleVO oneBBSTitleVO = null;try oneBBSTitleVO = bbsInfoManagerBean.doGetBBSTitleInfoByTitleID(Integer.parseInt(bbsTitleID);catch (WebBBSException e) request.setAttribute("errorText", "出現(xiàn)如下的錯誤:" +e.getMessage(); return mapping.findForward("showWebAppError");request.setAttribute("allBBSInfoVOList", allBBSInfoVOList);request.setAttribute("bbsTitleID", bbsTitleID);request.setAttribute("bbsTitleText", bbsTitleText);request.setAttribute("oneBBSTitleVO", oneBBSTitleVO);request.setAttribute("totalBBSInfoPageCounter",new Integer(totalBBSInfoPageCounter).toString();request.setAttribute("currentPage", new Integer(currentPage).toString();return mapping.findForward("showAllBBSInClass");public ActionForward showOneBBSInfo(ActionMapping 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號/獲得該BBS所在的分類的標題文字String bbsTitleText=(String)pageForwordActionForm.get("bbsTitleText"); /獲得該BBS所在的分類的ID String bbsTitleID=(String)pageForwordActionForm.

注意事項

本文(基于J2EE Struts框架的課程設(shè)計實訓(xùn)項目——BBS論壇系統(tǒng)——構(gòu)建控制層中實現(xiàn)頁面跳轉(zhuǎn)的 Action程序類)為本站會員(仙***)主動上傳,裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對上載內(nèi)容本身不做任何修改或編輯。 若此文所含內(nèi)容侵犯了您的版權(quán)或隱私,請立即通知裝配圖網(wǎng)(點擊聯(lián)系客服),我們立即給予刪除!

溫馨提示:如果因為網(wǎng)速或其他原因下載失敗請重新下載,重復(fù)下載不扣分。




關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

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

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


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