th张泽java课程设计方案课程设计方案报告正文.docx

上传人:b****9 文档编号:25250470 上传时间:2023-06-06 格式:DOCX 页数:33 大小:58.97KB
下载 相关 举报
th张泽java课程设计方案课程设计方案报告正文.docx_第1页
第1页 / 共33页
th张泽java课程设计方案课程设计方案报告正文.docx_第2页
第2页 / 共33页
th张泽java课程设计方案课程设计方案报告正文.docx_第3页
第3页 / 共33页
th张泽java课程设计方案课程设计方案报告正文.docx_第4页
第4页 / 共33页
th张泽java课程设计方案课程设计方案报告正文.docx_第5页
第5页 / 共33页
点击查看更多>>
下载资源
资源描述

th张泽java课程设计方案课程设计方案报告正文.docx

《th张泽java课程设计方案课程设计方案报告正文.docx》由会员分享,可在线阅读,更多相关《th张泽java课程设计方案课程设计方案报告正文.docx(33页珍藏版)》请在冰豆网上搜索。

th张泽java课程设计方案课程设计方案报告正文.docx

th张泽java课程设计方案课程设计方案报告正文

封面

作者:

PanHongliang

仅供个人学习

目录

1前言1

2需求分析1

2.1任务和要求1

2.2运行环境1

2.3开发工具1

3分析和设计2

3.1系统分析及设计思路2

3.2主要类图5

4具体代码实现(主要源代码)5

5课程设计总结21

5.1程序运行结果或预期运行结果21

5.2设计结论23

参考文献23

致谢23

前言

BBS(Bulletinboardsystem),通过BBS系统可随时取得国际最新的软件及信息,也可以通过BBS系统来和别人讨论计算机……多媒体、设计以及医学等等各种有趣的话题,更可以利用BBS系统来刊登一些“征友”、“廉价转让”及“公司产品”等启事,而且这个园地就在你我的身旁。

只要您拥有1台计算机、1只调制解调器和1条电话线,就能够进入这个“超时代”的领域,进而去享用它无比的威力!

2需求分析

2.1任务和要求

该BBS论坛系统方便企业员工内部技术交流、客户及时反馈意见。

其前台以简单的操作为用户提供方便的信息交流方式,同时后台为网站管理员提供便携的主题、回复、用户等信息管理功能。

前台功能:

用户注册、用户登录功能、论坛浏览、主题浏览、发表主题等功能

后台功能:

用户管理、栏目管理、主题管理、主题管理、回复管理等功能。

2.2运行环境

(1)WindowsXP/7系统

(2)MySQL数据库系统

(3)MyEclipse

2.3开发工具

Java

3分析和设计

3.1系统分析及设计思路

该BBS系统是一个典型的JavaWeb程序,由系统前台和后台管理及数据库三部分组成。

3.1.1系统前台

系统前台模块提供给所有用户使用,用户包括注册用户和普通游客,二者所拥有的功能不同。

系统前台主要包括用户登录、用户注册、发表主题、论坛浏览、主题浏览、删除主题等功能模块。

BBS系统前台功能结构如图3.1.1所示。

用户注册

删除主题

添加帖子主题

添加帖子主题

显示论坛列表

显示帖子详细内容

显示帖子主题

显示论坛名称

用户登录

论坛浏览

主题浏览

发表主题

删除主题

前台功能模块

图3.1.1BBS系统前台功能结构图

3.1.1.1论坛浏览模块分析

论坛浏览部分首先用首页进行展示各大论坛版块,其中包括论坛的名称、基本介绍、主题数和最新发表主题。

本首页由一个index.jsp文件来完成。

首先在index.jsp文件中引入Javascript语句,来连接与访问数据库,将数据库中各帖子标题、内容等详细信息逐个取出,并存放于新建的ArrayList中。

然后用html标签来展示主页详细内容,用标签来展示论坛标题;用<ahref>标签来添加跳转,以实现登录、注册、发表新主题等功能在主页上的链接;并在<body>中添加表单,将ArrayList中的数据取出,在<table>中有序显示出来,完成帖子的展示;并引入相关图片美化主页,以提高主页的吸引力。</p><p>3.1.1.2主题浏览模块分析</p><p>在主页中点击帖子标题,就会跳转到一个articleDetail.jsp页面,展示主题的详细内容。</p><p>在articleDetail.jsp文件中,接收到链接传过来的帖子ID,在数据库查找其标题、内容等信息,并在<html>标签中用<table>表单展示,并有一个链接<ahref>跳转返回到主页。</p><p>3.1.1.3删除主题模块分析</p><p>在主页中点击发表新主题,就会跳转到一个post.jsp页面,在<html>标签中添加了两个<input>表单,type为text类型,用于存放标题和内容。</p><p>在标题栏和内容栏中输入新帖子信息,点击submit提交,在JavaScript语句中接收到内容,连接到数据库将数据插入到数据库中,返回首页刷新,就可在首页看到新添加的主题。</p><p>3.1.1.4发表主题模块分析</p><p>在主页每个主题都有一个删除的链接,点击链接会跳转到delete.jsp页面,此链接会将主题的ID传给delete.jsp页面,在delete.jsp中连接数据库,根据传来的主题ID执行删除操作,将此主题的信息全部删除,若删除成功则显示“deletesuccess!</p><p>”并返回。</p><p>3.1.2后台管理</p><p>后台管理主要由管理员使用,可对论坛中相关信息进行管理、维护,普通用户无权使用。</p><p>后台管理主要包括用户管理、主题管理、管理员注销等功能模块。</p><p>BBS系统后台功能结构如图3.1.2所示。</p><p>后台功能模块</p><p>用户管理</p><p>主题管理</p><p>后台登录</p><p>删除用户</p><p>查询用户</p><p>主题删除</p><p>主题查询</p><p>管理员注销</p><p>主题添加</p><p>图3.1.2BBS系统后台功能结构图</p><p>3.1.3数据库分析</p><p>数据是系统的基础,数据库设计关系到系统开发的成败,因此这一环节在系统开发中显得尤为重要。</p><p>数据库设计就像一座建筑的地基一样,如果设计不合理,将会影响到整个系统开发的全过程,甚至会给后期维护带来极大的不便。</p><p>1、用户实体对象</p><p>用户实体包括用户编号(userid)、用户名(username)、密码(password)、性别(sex)、Email(email)、QQ号(qq)、签名(signature)、用户级别(grade)、地址(address)、头像(image)、用户真实姓名(reslname)等用户相关属性。</p><p>用户名是识别用户实体的唯一编号,也是数据表的主键,数据类型为int型;密码是用于用户登录验证;用户级别属性是标明用户在本系统的功能权限;其他属性都是描述此用户相关属性。</p><p>用户实体E-R图如图3.1.3.1所示。</p><p>图3.1.3.1用户实体E-R图</p><p>2、主题实体对象</p><p>主题实体包括主题ID(id)、父节点ID(pid)、根贴ID(rootid)、标题(title)、内容(cont)、发表时间(pdate)、是否有叶子节点(isleaf)等相关属性。</p><p>主题ID是识别主题实体的唯一编号,为主键,数据类型为int型;其他属性都是用于描述主题实体对象相关属性。</p><p>主题实体E-R图如图3.1.3.2所示。</p><p>图3.1.3.2主题贴E-R图</p><p>3.2主要类图</p><p>用户登录类,论坛类,主题类三者之前的关系如下类图所示:</p><p>图3.1后台模块类图</p><p>4具体代码实现(主要源代码)</p><p>//struts.xmlstruts配置文件定义了各种action和result</p><p><?</p><p>xmlversion="1.0"encoding="UTF-8"?</p><p>></p><p><!</p><p>DOCTYPEstrutsPUBLIC</p><p>"-//ApacheSoftwareFoundation//DTDStrutsConfiguration2.1//EN"</p><p>""></p><p><struts></p><p><packagename="admin"namespace="/admin"extends="struts-default"></p><p><actionname="*_*"class="org.zz.bbs.action.{1}Action"method="{2}"></p><p><result>/admin/{1}_{2}.jsp</result></p><p><resultname="input">/admin/{1}_{2}.jsp</result></p><p></action></p><p></package></p><p><packagename="front"namespace="/"extends="struts-default"></p><p><actionname="Category_list"class="org.zz.bbs.action.CategoryAction"method="list"></p><p><result>/Category_list.jsp</result></p><p></action></p><p></package></p><p><includefile="login.xml"></include></p><p><includefile="register.xml"></include></p><p></struts></p><p>//Category.java论坛实体类</p><p>packageorg.zz.bbs.model。</p><p>publicclassCategory{</p><p>privateStringcreatetime。</p><p>//创建时间</p><p>privateStringdescription。</p><p>//论坛描述</p><p>privateintid。</p><p>//论坛id</p><p>privateStringmanager。</p><p>//论坛版主</p><p>privateStringcategoryname。</p><p>//论坛名称</p><p>publicStringgetCreatetime(){</p><p>returncreatetime。</p><p>}</p><p>publicStringgetDescription(){</p><p>returndescription。</p><p>}</p><p>publicintgetId(){</p><p>returnid。</p><p>}</p><p>publicStringgetManager(){</p><p>returnmanager。</p><p>}</p><p>publicvoidsetCreatetime(Stringcreatetime){</p><p>this.createtime=createtime。</p><p>}</p><p>publicvoidsetDescription(Stringdescription){</p><p>this.description=description。</p><p>}</p><p>publicvoidsetId(intid){</p><p>this.id=id。</p><p>}</p><p>publicvoidsetManager(Stringmanager){</p><p>this.manager=manager。</p><p>}</p><p>publicvoidsetCategoryname(Stringcategoryname){</p><p>this.categoryname=categoryname。</p><p>}</p><p>publicStringgetCategoryname(){</p><p>returncategoryname。</p><p>}</p><p>}</p><p>//UserLogin.java用户实体类</p><p>packageorg.zz.bbs.model。</p><p>publicclassUserLogin{//用户登录</p><p>privateStringuserid。</p><p>//用户密码</p><p>privateStringusername。</p><p>//用户名</p><p>privateStringpassword。</p><p>//密码</p><p>publicStringgetUsername(){</p><p>returnusername。</p><p>}</p><p>publicvoidsetUsername(Stringusername){</p><p>this.username=username。</p><p>}</p><p>publicStringgetPassword(){</p><p>returnpassword。</p><p>}</p><p>publicvoidsetPassword(Stringpassword){</p><p>this.password=password。</p><p>}</p><p>publicvoidsetUserid(Stringuserid){</p><p>this.userid=userid。</p><p>}</p><p>publicStringgetUserid(){</p><p>returnuserid。</p><p>}</p><p>}</p><p>//CategoryAction.java论坛的增、删、改、查action</p><p>packageorg.zz.bbs.action。</p><p>importjava.util.List。</p><p>importorg.zz.bbs.model.Category。</p><p>importorg.zz.bbs.service.CategoryService。</p><p>importcom.opensymphony.xwork2.ActionSupport。</p><p>//Category的增、删、改、查并返回到具体视图</p><p>publicclassCategoryActionextendsActionSupport{</p><p>privateList<Category>categories。</p><p>privateCategoryServicecategoryService=newCategoryService()。</p><p>//Spring框架中会进化</p><p>privateCategorycategory。</p><p>privateintid。</p><p>publicStringlist(){</p><p>categories=categoryService.list()。</p><p>returnSUCCESS。</p><p>}</p><p>publicStringadd(){</p><p>categoryService.add(category)。</p><p>returnSUCCESS。</p><p>}</p><p>publicStringupdate(){</p><p>categoryService.update(category)。</p><p>returnSUCCESS。</p><p>}</p><p>publicStringdelete(){</p><p>categoryService.deleteById(id)。</p><p>returnSUCCESS。</p><p>}</p><p>publicStringaddInput(){</p><p>returnINPUT。</p><p>}</p><p>publicStringupdateInput(){</p><p>this.category=this.categoryService.loadById(id)。</p><p>returnINPUT。</p><p>}</p><p>publicList<Category>getCategories(){</p><p>returncategories。</p><p>}</p><p>publicvoidsetCategories(List<Category>categories){</p><p>this.categories=categories。</p><p>}</p><p>publicCategoryServicegetCategoryService(){</p><p>returncategoryService。</p><p>}</p><p>publicvoidsetCategoryService(CategoryServicecategoryService){</p><p>this.categoryService=categoryService。</p><p>}</p><p>publicCategorygetCategory(){</p><p>returncategory。</p><p>}</p><p>publicvoidsetCategory(Categorycategory){</p><p>this.category=category。</p><p>}</p><p>publicintgetId(){</p><p>returnid。</p><p>}</p><p>publicvoidsetId(intid){</p><p>this.id=id。</p><p>}</p><p>}</p><p>//UserLoginAction.java用户登录action</p><p>packageorg.zz.bbs.action。</p><p>importjava.sql.SQLException。</p><p>importorg.zz.bbs.model.UserLogin。</p><p>importorg.zz.bbs.service.UserLoginService。</p><p>importcom.opensymphony.xwork2.ActionSupport。</p><p>// 用户注册</p><p>publicclassUserLoginActionextendsActionSupport{</p><p>privateStringusername。</p><p>privateStringpassword。</p><p>privateUserLoginuserlogin。</p><p>privateUserLoginServiceuserloginservice=newUserLoginService()。</p><p>publicStringisValidate(){</p><p>try{</p><p>if(userloginservice.isValidate(userlogin,username,password)){</p><p>System.out.println("返回到成功页面")。</p><p>//调试是否进入此函数</p><p>returnSUCCESS。</p><p>}</p><p>}catch(SQLExceptione){</p><p>e.printStackTrace()。</p><p>}</p><p>System.out.println("返回到失败页面")。</p><p>//调试是否进入此函数</p><p>returnERROR。</p><p>}</p><p>publicUserLogingetLogin(){</p><p>returnuserlogin。</p><p>}</p><p>publicvoidsetLogin(UserLoginuserlogin){</p><p>this.userlogin=userlogin。</p><p>}</p><p>publicStringgetUsername(){</p><p>returnusername。</p><p>}</p><p>publicvoidsetUsername(Stringusername){</p><p>this.username=username。</p><p>}</p><p>//CategoryService.java论坛Service,用于连接数据库的基本操作</p><p>packageorg.zz.bbs.service。</p><p>importjava.sql.Connection。</p><p>importjava.sql.PreparedStatement。</p><p>importjava.sql.ResultSet。</p><p>importjava.sql.SQLException。</p><p>importjava.util.ArrayList。</p><p>importjava.util.List。</p><p>importorg.zz.bbs.model.Category。</p><p>importorg.zz.bbs.util.DatebaseConnection。</p><p>。</p><p>//DB'sCURD</p><p>publicclassCategoryService{</p><p>publicvoidadd(Categoryc){</p><p>Connectionconn=DatebaseConnection.createConn()。</p><p>Stringsql="Insertinto_categoryvalue(null,?</p><p>?</p><p>?</p><p>null)"。</p><p>PreparedStatementps=DatebaseConnection.prepare(conn,sql)。</p><p>try{</p><p>ps.setString(1,c.getCategoryname())。</p><p>ps.setString(2,c.getDescription())。</p><p>ps.setString(3,c.getManager())。</p><p>ps.executeUpdate()。</p><p>}catch(SQLExceptione){</p><p>e.printStackTrace()。</p><p>}</p><p>DatebaseConnection.close(ps)。</p><p>DatebaseConnection.close(conn)。</p><p>}</p><p>publicList<Category>list(){</p><p>Connectionconn=DatebaseConnection.createConn()。</p><p>Stringsql="select*from_category"。</p><p>PreparedStatementps=DatebaseConnection.prepare(conn,sql)。</p><p>List<Category>categories=newArrayList<Category>()。</p><p>try{</p><p>ResultSetrs=ps.executeQuery()。</p><p>Categoryc=null。</p><p>while(rs.next()){</p><p>c=newCategory()。</p><p>c.setId(rs.getInt("id"))。</p><p>c.setCategoryname(rs.getString("categoryname"))。</p><p>c.setDescription(rs.getString("description"))。</p><p>c.setDescription(rs.getString("manager"))。</p><p>c.setDescription(rs.getString("createtime"))。</p><p>categories.add(c)。</p><p>}</p><p>}catch(SQLExceptione){</p><p>e.printStackTrace()。</p><p>}</p><p>DatebaseConnection.close(ps)。</p><p>DatebaseConnection.close(conn)。</p><p>returncategories。</p><p>}</p><p>publicvoiddelete(Categoryc){</p><p>deleteById(c.getId())。</p><p>}</p><p>publicvoiddeleteById(intid){</p><p>Connectionconn=DatebaseConnection.createConn()。</p><p>Stringsql="deletefrom_categorywhereid=?</p><p>"。</p><p>PreparedStatementps=DatebaseConnection.prepare(conn,sql)。</p><p>try{</p><p>ps.setInt(1,id)。</p><p>ps.executeUpdate()。</p><p>}catch(SQLExceptione){</p><p>e.printStackTrace()。</p><p>}</p><p>DatebaseConnection.close(ps)。</p><p>DatebaseConnection.close(conn)。</p><p>}</p><p>publicvoidupdate(Categoryc){</p><p>Connectionconn=DatebaseConnection.createConn()。</p><p>Stringsql="update_categorysetcetegoryname=?</p><p>description=?</p><p>manager=?</p><p>whereid=?</p><p>"。</p><p>PreparedStatementps=DatebaseConnection.prepare(conn,sql)。</p><p>try{</p><p>ps.set</p> </div> <div class="readmore" onclick="showmore()" style="background-color:transparent; height:auto; margin:0px 0px; padding:20px 0px 0px 0px;"><span class="btn-readmore" style="background-color:transparent;"><em style=" font-style:normal">展开</em>阅读全文<i></i></span></div> <script> function showmore() { $(".readmore").hide(); $(".detail-article").css({ "height":"auto", "overflow": "hidden" }); } $(document).ready(function() { var dh = $(".detail-article").height(); if(dh >100) { $(".detail-article").css({ "height":"100px", "overflow": "hidden" }); } else { $(".readmore").hide(); } }); </script> </div> <script> var defaultShowPage = parseInt("5"); var id = "25250470"; var total_page = "33"; var mfull = false; var mshow = false; function DownLoad() { window.location.href='https://m.bdocx.com/down/25250470.html'; } function relate() { var reltop = $('#relate').offset().top-50; $("html,body").animate({ scrollTop: reltop }, 500); } </script> <script> var pre = "https://file1.bdocx.com/fileroot1/2023-6/6/3a5b2011-53af-44ab-ac0d-724b511d1b18/3a5b2011-53af-44ab-ac0d-724b511d1b18"; var freepage = parseInt('20'); var total_c = parseInt('33'); var start = defaultShowPage; var adcount = 0; var adindex = 0; var adType_list = ";0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;"; var end = start; function ShowSvg() { end = start + defaultShowPage; if (end > freepage) end = freepage; for (var i = start; i < end; i++) { var imgurl = pre + (i + 1) + '.gif'; var html = "<img src='" + imgurl + "' onerror=\"this.src='/images/s.gif'\" alt=\"th张泽java课程设计方案课程设计方案报告正文.docx_第" + (i + 1) + "页\" width='100%'/>"; $("#page").append("<div class='page'>" + html + "</div>"); $("#page").append("<div class='pageSize'>第" + (i + 1) + "页 / 共" + total_c + "页</div>"); if(adcount > 0 && adType_list.indexOf(";"+(i+1)+";")>-1) { if(adindex > (adcount-1)) adindex = 0; $("#page").append("<div class='pagead' id='addiv"+(i + 1)+"'></div>"); document.getElementById("addiv"+(i + 1)+"").innerHTML =document.getElementById("adpre" + adindex).outerHTML; adindex += 1; } } start = end; if (start > (freepage - 1)) { if (start < total_c) { $("#pageMore").removeClass("btnmore"); $("#pageMore").html("亲,该文档总共" + total_c + "页,到这儿已超出免费预览范围,如果喜欢就下载吧!"); } else { $("#pageMore").removeClass("btnmore"); $("#pageMore").html("亲,该文档总共" + total_c + "页全部预览完了,如果喜欢就下载吧!"); } } } //$(document).ready(function () { // ShowSvg(); //}); </script> <div id="relate" class="container" style="padding:0px 0px 15px 0px; margin-top:20px; border:solid 1px #dceef8"> <div style=" font-size: 16px; background-color:#e5f0f7; margin-bottom:5px; font-weight: bold; text-indent:10px; line-height: 40px; height:40px; padding-bottom: 0px;">相关资源</div> <div id="relatelist" style="padding-left:5px;"> <ul> <li><em class="pptx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30872870.html" title="临床输血技术规范课件..pptx">临床输血技术规范课件..pptx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30872785.html" title="污泥重力浓缩池设计以及设计计算.docx">污泥重力浓缩池设计以及设计计算.docx</a> </li><li><em class="ppt"/></em><a target="_parent" href="https://m.bdocx.com/doc/30872773.html" title="中国档案事业史概述.ppt">中国档案事业史概述.ppt</a> </li><li><em class="pptx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30872652.html" title="2024年六大纪律“严守工作纪律”全文.pptx">2024年六大纪律“严守工作纪律”全文.pptx</a> </li><li><em class="pptx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30872619.html" title="高校一站式整体解决方案.pptx">高校一站式整体解决方案.pptx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30872569.html" title="《绿色出行》教学设计.docx">《绿色出行》教学设计.docx</a> </li><li><em class="docx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30872522.html" title="水冲公厕工程施工组织设计施工方案技术标投标方案.docx">水冲公厕工程施工组织设计施工方案技术标投标方案.docx</a> </li><li><em class="ppt"/></em><a target="_parent" href="https://m.bdocx.com/doc/30872117.html" title="公路工程质量检验评定方法PPT课件.ppt">公路工程质量检验评定方法PPT课件.ppt</a> </li><li><em class="ppt"/></em><a target="_parent" href="https://m.bdocx.com/doc/30871815.html" title="3000BC,埃及孟非思壁画中长老患小儿麻痹症.ppt">3000BC,埃及孟非思壁画中长老患小儿麻痹症.ppt</a> </li><li><em class="pptx"/></em><a target="_parent" href="https://m.bdocx.com/doc/30871734.html" title="刚体转动惯量的测定.pptx">刚体转动惯量的测定.pptx</a> </li> </ul> </div> </div> <div class="container" style="padding:0px 0px 15px 0px; margin-top:20px; border:solid 1px #dceef8"> <div style=" font-size: 16px; background-color:#e5f0f7; margin-bottom:5px; font-weight: bold; text-indent:10px; line-height: 40px; height:40px; padding-bottom: 0px;">猜你喜欢</div> <div id="relatelist" style="padding-left:5px;"> <ul> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/15953183.html" target="_parent" title="实习报告 化工学院本科生水泥厂毕业实习报告范本 精品Word下载.docx">实习报告 化工学院本科生水泥厂毕业实习报告范本 精品Word下载.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/15953184.html" target="_parent" title="怎样做到大智若愚Word文件下载.docx">怎样做到大智若愚Word文件下载.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/15953185.html" target="_parent" title="医院财务制度Word下载.docx">医院财务制度Word下载.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/15953186.html" target="_parent" title="圣诞节活动策划游园会策划Word文档格式.docx">圣诞节活动策划游园会策划Word文档格式.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/15953187.html" target="_parent" title="关于五四主持词3篇Word下载.docx">关于五四主持词3篇Word下载.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/15953188.html" target="_parent" title="浙江省嘉兴市届高三模拟英语试题Word格式文档下载.docx">浙江省嘉兴市届高三模拟英语试题Word格式文档下载.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/15953189.html" target="_parent" title="银行系统公开招聘考试职业能力测试25Word文档格式.docx">银行系统公开招聘考试职业能力测试25Word文档格式.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/15953190.html" target="_parent" title="职业生涯规划书 预防医学Word格式.docx">职业生涯规划书 预防医学Word格式.docx</a></li> <li><em class="docx"></em> <a href="https://m.bdocx.com/doc/15953191.html" target="_parent" title="关于农产品质量安全保障工作的小结报告提纲Word格式文档下载.docx">关于农产品质量安全保障工作的小结报告提纲Word格式文档下载.docx</a></li> </ul> </div> </div> <div style=" font-size: 16px; background-color:#e5f0f7; margin-top:20px; font-weight: bold; text-indent:10px; line-height: 40px; height:40px; padding-bottom: 0px; margin-bottom:10px;"> 相关搜索</div> <div class="widget-box pt0" style="border: none; padding:0px 5px;"> <ul class="taglist--inline multi"> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bdocx.com/search.html?q=th">th</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bdocx.com/search.html?q=java">java</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bdocx.com/search.html?q=%e8%af%be%e7%a8%8b%e8%ae%be%e8%ae%a1">课程设计</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bdocx.com/search.html?q=%e6%96%b9%e6%a1%88">方案</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bdocx.com/search.html?q=%e6%8a%a5%e5%91%8a">报告</a></li> <li class="tagPopup"><a target="_parent" class="tag tagsearch" rel="nofollow" href="https://m.bdocx.com/search.html?q=%e6%ad%a3%e6%96%87">正文</a></li> </ul> </div> <br /> <div > 当前位置:<a target="_parent" href="https://m.bdocx.com/">首页</a> > <a href="https://m.bdocx.com/booklist-00023.html">考试认证</a><span> > </span><a href="https://m.bdocx.com/booklist-0002300006.html">财会金融考试</a> </div> <br /> <div class="cssnone"> <iframe title="来源" src="https://m.bdocx.com/BookRead.aspx?id=K74%7cpbb%7c2LLuvq9lY3Ld5Q%3d%3d&parto=6u5UoWkmyv7qtEuZnfRe7S7U7vcOR9zDgCjnwo%2bVipXuHO%2fg321sws8Foist%2bl1FyIUcOBNbSFfZR3%2bBhxoHbXzFPg04KguW9CPcAWYUadVF99mCsC8tZiZ19LyKghjMNKKMHuSKgbjVWfm7gRTcfBC26lACC%2b2enNCKyYdaORNjqiOdSmvQwPf9CTZDWjr38NEv3sxycgWJCrqlWinPPLTPGwJHK%2fzr" frameborder="0" style="width: 0px; height: 0px"> </iframe> </div> <span id="LabelScript"></span> <script src="https://mstatic.bdocx.com/JS/bootstrap-collapse.js"></script> </form> <div class="siteInner_bg" style="margin-top: 40px; border: solid 0px red; margin-left: 0px; margin-right: 0px;"> <div class="siteInner"> <p style="text-align: center;">copyright@ 2008-2022 冰豆网网站版权所有</p><p style="text-align: center;">经营许可证编号:<a href="http://beian.miit.gov.cn/" target="_blank">鄂ICP备2022015515号-1</a></p><script>var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?2e77bd3f6fe91b0e21d3f22267249ee3"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })();</script><script>(function(){ var el = document.createElement("script"); el.src = "https://lf1-cdn-tos.bytegoofy.com/goofy/ttzz/push.js?81476e42bf626128cf29544ee216a8ed7deb9487dce7ed62313212129c4244a219d1c501ebd3301f5e2290626f5b53d078c8250527fa0dfd9783a026ff3cf719"; el.id = "ttzz"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(el, s); })(window)</script> </div> </div> <div class="trnav clearfix" id="navcontent" style="display: none; background-color:#3a71b1; "> <div class="trlogoside" id="navlogo" style="display: none;"> <a href="https://m.bdocx.com/" title="冰豆网"><img src="https://www.bdocx.com/images/logo_bd.png" alt="冰豆网"></a> <div class="trnavclose" id="navclose"> <span></span> </div> </div> <div class="navcontainer"> <div class="row"> <ul class="nav navbar-nav trnavul headercontent" id="navigation" style="margin:20px 0 0px;"> <li><a target="_parent"href="https://m.bdocx.com/login.aspx">登录</a></li> <li><a target="_parent"href="https://m.bdocx.com/">首页 </a></li> <li><a target="_parent"href="https://m.bdocx.com/booklist-0.html">资源分类 </a></li> <li><a target="_parent"href="https://m.bdocx.com/UserManage/Recharge.aspx?f=0"><img src="https://m.bdocx.com/images/s.gif" alt="new" class="hottip1">升级会员 <img src="https://www.bdocx.com/FileUpload/Images/48520fea-bc98-41ae-b183-84689c7075c9.gif" alt="new" class="hottip"></a></li> <li><a target="_parent"href="https://m.bdocx.com/newslist.html">通知公告 </a></li> <li><a target="_parent"href="https://m.bdocx.com/h-0.html">帮助中心 </a></li> </ul> </div> </div> </div> <script type="text/javascript"> function stopPropagation(e) { var ev = e || window.event; if (ev.stopPropagation) { ev.stopPropagation(); } else if (window.event) { window.event.cancelBubble = true;//兼容IE } } $("#navmore").click(function (e) { $("#navcontent").show(); $("#navlogo").show(); stopPropagation(e); var navcontentwidth = $("#navcontent").width(); $('#navcontent').css({ 'right': '-' + navcontentwidth + 'px' }); $("#navcontent").show().animate({ "right": 0 }, 300); }); $(document).bind('click', function () { var navcontentwidth = $("#navcontent").width(); $("#navcontent").animate({ 'right': '-' + navcontentwidth + 'px' }, 300, function () { $("#navcontent").hide(); }); $("#navlogo").fadeOut(300); }); $("#navcontent").click(function (e) { stopPropagation(e); }); $("#navclose").click(function (e) { var navcontentwidth = $("#navcontent").width(); $("#navcontent").animate({ 'right': '-' + navcontentwidth + 'px' }, 300, function () { $("#navcontent").hide(); }); $("#navlogo").fadeOut(300); }); </script> <script> function BaseShare(title, desc, imgUrl) { var link = "https://m.bdocx.com/doc/25250470.html"; if (wx) { wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: 'wx4f717640abfd1120', // 必填,公众号的唯一标识 timestamp: '1726416096', // 必填,生成签名的时间戳 nonceStr: 'EECCA5B6365D9607EE5A9D336962C534', // 必填,生成签名的随机串 signature: 'e3a614ad2b7b27d48f9d3c944c94aa160950a796',// 必填,签名,见附录1 jsApiList: ['onMenuShareAppMessage', 'onMenuShareTimeline', 'updateAppMessageShareData', 'updateTimelineShareData', 'hideMenuItems'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 //openTagList: ["wx-open-launch-weapp"]//H5打开小程序 }); wx.ready(function () { //需在用户可能点击分享按钮前就先调用 wx.hideMenuItems({// 要隐藏的菜单项,只能隐藏“传播类”和“保护类”按钮,所有menu项见附录3 menuList: ['menuItem:share:qq', 'menuItem:favorite', 'menuItem:share:QZone', 'menuItem:share:email', 'menuItem:originPage', 'menuItem:readMode', 'menuItem:delete', 'menuItem:editTag', 'menuItem:share:facebook', 'menuItem:share:weiboApp', 'menuItem:share:brand'] }); var shareData = { title: title, // 分享标题 desc: desc,//这里请特别注意是要去除html link: link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgUrl, // 分享图标 }; wx.updateAppMessageShareData(shareData);//1.4 分享到朋友 wx.updateTimelineShareData(shareData);//1.4分享到朋友圈 }); } } function BaseShare(title, desc, imgUrl, link) { if (link=="") link = "https://m.bdocx.com/doc/25250470.html"; if (wx) { wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: 'wx4f717640abfd1120', // 必填,公众号的唯一标识 timestamp: '1726416096', // 必填,生成签名的时间戳 nonceStr: 'EECCA5B6365D9607EE5A9D336962C534', // 必填,生成签名的随机串 signature: 'e3a614ad2b7b27d48f9d3c944c94aa160950a796',// 必填,签名,见附录1 jsApiList: ['onMenuShareAppMessage', 'onMenuShareTimeline', 'updateAppMessageShareData', 'updateTimelineShareData', 'hideMenuItems'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 //openTagList: ["wx-open-launch-weapp"]//H5打开小程序 }); wx.ready(function () { //需在用户可能点击分享按钮前就先调用 wx.hideMenuItems({// 要隐藏的菜单项,只能隐藏“传播类”和“保护类”按钮,所有menu项见附录3 menuList: ['menuItem:share:qq', 'menuItem:favorite', 'menuItem:share:QZone', 'menuItem:share:email', 'menuItem:originPage', 'menuItem:readMode', 'menuItem:delete', 'menuItem:editTag', 'menuItem:share:facebook', 'menuItem:share:weiboApp', 'menuItem:share:brand'] }); var shareData = { title: title, // 分享标题 desc: desc,//这里请特别注意是要去除html link: link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgUrl, // 分享图标 }; wx.updateAppMessageShareData(shareData);//1.4 分享到朋友 wx.updateTimelineShareData(shareData);//1.4分享到朋友圈 }); } } </script> <script> $(document).ready(function () { var arr = $(".headercontent"); for (var i = 0; i < arr.length; i++) { (function (index) { var url = "https://m.bdocx.com/header.aspx"; $.get(url + "?t=" + (new Date()).valueOf(), function (d) { try { arr.eq(index).empty().html(d); } catch (e) { } try { arr.html(d); } catch (e) { } }); })(i); } }); </script> <script src="https://mstatic.bdocx.com/js/jquery.lazyload.js"></script> <script charset="utf-8"> $("img.lazys").lazyload({ threshold: 200, effect: "fadeIn" }); </script> </body> </html>