实例介绍
jsp项目开发全程实录 第3版 项目1到项目10源代码全 第三版的 没涉及到视频
【实例截图】
【核心代码】
TM
└── TM
├── 01
│ ├── build
│ │ └── classes
│ │ ├── cityinfo.xml
│ │ ├── com
│ │ │ └── yxq
│ │ │ ├── action
│ │ │ │ ├── AdminAction.class
│ │ │ │ ├── IndexAction.class
│ │ │ │ ├── InfoAction.class
│ │ │ │ ├── LogInOutAction.class
│ │ │ │ └── package.properties
│ │ │ ├── actionSuper
│ │ │ │ ├── AdminSuperAction.class
│ │ │ │ ├── InfoSuperAction.class
│ │ │ │ └── MySuperAction.class
│ │ │ ├── dao
│ │ │ │ ├── DB.class
│ │ │ │ └── OpDB.class
│ │ │ ├── model
│ │ │ │ ├── AdminShowType.class
│ │ │ │ ├── CreatePage.class
│ │ │ │ ├── InfoSingle.class
│ │ │ │ ├── SearchInfo.class
│ │ │ │ └── UserSingle.class
│ │ │ └── tools
│ │ │ └── DoString.class
│ │ ├── struts.properties
│ │ └── struts.xml
│ ├── Database
│ │ ├── db_CityInfo_Data.MDF
│ │ └── db_CityInfo_log.LDF
│ ├── readme.doc
│ ├── src
│ │ ├── cityinfo.xml
│ │ ├── com
│ │ │ └── yxq
│ │ │ ├── action
│ │ │ │ ├── AdminAction.java
│ │ │ │ ├── IndexAction.java
│ │ │ │ ├── InfoAction.java
│ │ │ │ ├── LogInOutAction.java
│ │ │ │ └── package.properties
│ │ │ ├── actionSuper
│ │ │ │ ├── AdminSuperAction.java
│ │ │ │ ├── InfoSuperAction.java
│ │ │ │ └── MySuperAction.java
│ │ │ ├── dao
│ │ │ │ ├── DB.java
│ │ │ │ └── OpDB.java
│ │ │ ├── model
│ │ │ │ ├── AdminShowType.java
│ │ │ │ ├── CreatePage.java
│ │ │ │ ├── InfoSingle.java
│ │ │ │ ├── SearchInfo.java
│ │ │ │ └── UserSingle.java
│ │ │ └── tools
│ │ │ └── DoString.java
│ │ ├── struts.properties
│ │ └── struts.xml
│ └── WebContent
│ ├── css
│ │ └── style.css
│ ├── images
│ │ ├── admin_exit.gif
│ │ ├── admin_index.gif
│ │ ├── admin_menu.jpg
│ │ ├── admin_top.jpg
│ │ ├── back.gif
│ │ ├── b_logon.gif
│ │ ├── b_reset.gif
│ │ ├── default_e.jpg
│ │ ├── default_m.jpg
│ │ ├── default_t.jpg
│ │ ├── end.jpg
│ │ ├── leftD.jpg
│ │ ├── leftS.jpg
│ │ ├── logo.gif
│ │ ├── logon_end.gif
│ │ ├── logon_middle.gif
│ │ ├── logon_top.gif
│ │ ├── menu.gif
│ │ ├── m_index.gif
│ │ ├── pcard1.jpg
│ │ └── pcard2.jpg
│ ├── index.jsp
│ ├── js
│ │ ├── DeleteCheck.js
│ │ └── InputCheck.js
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── pages
│ │ ├── add
│ │ │ └── addInfo.jsp
│ │ ├── admin
│ │ │ ├── info
│ │ │ │ ├── checkshow.jsp
│ │ │ │ ├── listshow.jsp
│ │ │ │ └── moneyshow.jsp
│ │ │ ├── Login.jsp
│ │ │ └── view
│ │ │ ├── AdminTemp.jsp
│ │ │ ├── default.jsp
│ │ │ ├── end.jsp
│ │ │ ├── main.jsp
│ │ │ ├── right.jsp
│ │ │ └── top.jsp
│ │ ├── calendar.jsp
│ │ ├── error.jsp
│ │ ├── page.jsp
│ │ └── show
│ │ ├── listshow.jsp
│ │ ├── searchshow.jsp
│ │ └── singleshow.jsp
│ ├── view
│ │ ├── default.jsp
│ │ ├── end.jsp
│ │ ├── IndexTemp.jsp
│ │ ├── left.jsp
│ │ └── top.jsp
│ └── WEB-INF
│ ├── classes
│ │ ├── cityinfo.xml
│ │ ├── com
│ │ │ └── yxq
│ │ │ ├── action
│ │ │ │ ├── AdminAction.class
│ │ │ │ ├── IndexAction.class
│ │ │ │ ├── InfoAction.class
│ │ │ │ ├── LogInOutAction.class
│ │ │ │ └── package.properties
│ │ │ ├── actionSuper
│ │ │ │ ├── AdminSuperAction.class
│ │ │ │ ├── InfoSuperAction.class
│ │ │ │ └── MySuperAction.class
│ │ │ ├── dao
│ │ │ │ ├── DB.class
│ │ │ │ └── OpDB.class
│ │ │ ├── model
│ │ │ │ ├── AdminShowType.class
│ │ │ │ ├── CreatePage.class
│ │ │ │ ├── InfoSingle.class
│ │ │ │ ├── SearchInfo.class
│ │ │ │ └── UserSingle.class
│ │ │ └── tools
│ │ │ └── DoString.class
│ │ ├── struts.properties
│ │ └── struts.xml
│ ├── lib
│ │ ├── commons-logging-1.0.4.jar
│ │ ├── freemarker-2.3.8.jar
│ │ ├── ognl-2.6.11.jar
│ │ ├── sqljdbc4.jar
│ │ ├── struts2-core-2.0.11.jar
│ │ └── xwork-2.0.4.jar
│ ├── tld
│ │ └── struts-tags.tld
│ └── web.xml
├── 02
│ ├── build
│ │ └── classes
│ │ └── com
│ │ ├── action
│ │ │ ├── BookCase.class
│ │ │ ├── Book.class
│ │ │ ├── BookType.class
│ │ │ ├── Borrow.class
│ │ │ ├── Library.class
│ │ │ ├── Manager.class
│ │ │ ├── Parameter.class
│ │ │ ├── Publishing.class
│ │ │ ├── Reader.class
│ │ │ └── ReaderType.class
│ │ ├── actionForm
│ │ │ ├── BookCaseForm.class
│ │ │ ├── BookForm.class
│ │ │ ├── BookTypeForm.class
│ │ │ ├── BorrowForm.class
│ │ │ ├── LibraryForm.class
│ │ │ ├── ManagerForm.class
│ │ │ ├── ParameterForm.class
│ │ │ ├── PublishingForm.class
│ │ │ ├── ReaderForm.class
│ │ │ └── ReaderTypeForm.class
│ │ ├── connDB.properties
│ │ ├── core
│ │ │ ├── ChStr.class
│ │ │ └── ConnDB.class
│ │ ├── dao
│ │ │ ├── BookCaseDAO.class
│ │ │ ├── BookDAO.class
│ │ │ ├── BookTypeDAO.class
│ │ │ ├── BorrowDAO.class
│ │ │ ├── LibraryDAO.class
│ │ │ ├── ManagerDAO.class
│ │ │ ├── ParameterDAO.class
│ │ │ ├── PublishingDAO.class
│ │ │ ├── ReaderDAO.class
│ │ │ └── ReaderTypeDAO.class
│ │ └── wgh
│ │ └── struts
│ │ └── ApplicationResources.properties
│ ├── Database
│ │ ├── db_librarySys
│ │ │ ├── db.opt
│ │ │ ├── tb_bookcase.frm
│ │ │ ├── tb_bookcase.MYD
│ │ │ ├── tb_bookcase.MYI
│ │ │ ├── tb_bookinfo.frm
│ │ │ ├── tb_bookinfo.MYD
│ │ │ ├── tb_bookinfo.MYI
│ │ │ ├── tb_booktype.frm
│ │ │ ├── tb_booktype.MYD
│ │ │ ├── tb_booktype.MYI
│ │ │ ├── tb_borrow.frm
│ │ │ ├── tb_borrow.MYD
│ │ │ ├── tb_borrow.MYI
│ │ │ ├── tb_giveback.frm
│ │ │ ├── tb_giveback.MYD
│ │ │ ├── tb_giveback.MYI
│ │ │ ├── tb_library.frm
│ │ │ ├── tb_library.MYD
│ │ │ ├── tb_library.MYI
│ │ │ ├── tb_manager.frm
│ │ │ ├── tb_manager.MYD
│ │ │ ├── tb_manager.MYI
│ │ │ ├── tb_parameter.frm
│ │ │ ├── tb_parameter.MYD
│ │ │ ├── tb_parameter.MYI
│ │ │ ├── tb_publishing.frm
│ │ │ ├── tb_publishing.MYD
│ │ │ ├── tb_publishing.MYI
│ │ │ ├── tb_purview.frm
│ │ │ ├── tb_purview.MYD
│ │ │ ├── tb_purview.MYI
│ │ │ ├── tb_reader.frm
│ │ │ ├── tb_reader.MYD
│ │ │ ├── tb_reader.MYI
│ │ │ ├── tb_readertype.frm
│ │ │ ├── tb_readertype.MYD
│ │ │ └── tb_readertype.MYI
│ │ └── db_librarySys_20091222 0949.sql
│ ├── readme.doc
│ ├── src
│ │ └── com
│ │ ├── action
│ │ │ ├── BookCase.java
│ │ │ ├── Book.java
│ │ │ ├── BookType.java
│ │ │ ├── Borrow.java
│ │ │ ├── Library.java
│ │ │ ├── Manager.java
│ │ │ ├── Parameter.java
│ │ │ ├── Publishing.java
│ │ │ ├── Reader.java
│ │ │ └── ReaderType.java
│ │ ├── actionForm
│ │ │ ├── BookCaseForm.java
│ │ │ ├── BookForm.java
│ │ │ ├── BookTypeForm.java
│ │ │ ├── BorrowForm.java
│ │ │ ├── LibraryForm.java
│ │ │ ├── ManagerForm.java
│ │ │ ├── ParameterForm.java
│ │ │ ├── PublishingForm.java
│ │ │ ├── ReaderForm.java
│ │ │ └── ReaderTypeForm.java
│ │ ├── connDB.properties
│ │ ├── core
│ │ │ ├── ChStr.java
│ │ │ └── ConnDB.java
│ │ ├── dao
│ │ │ ├── BookCaseDAO.java
│ │ │ ├── BookDAO.java
│ │ │ ├── BookTypeDAO.java
│ │ │ ├── BorrowDAO.java
│ │ │ ├── LibraryDAO.java
│ │ │ ├── ManagerDAO.java
│ │ │ ├── ParameterDAO.java
│ │ │ ├── PublishingDAO.java
│ │ │ ├── ReaderDAO.java
│ │ │ └── ReaderTypeDAO.java
│ │ └── wgh
│ │ └── struts
│ │ └── ApplicationResources.properties
│ └── WebContent
│ ├── banner.jsp
│ ├── book_add.jsp
│ ├── bookBack.jsp
│ ├── bookBack_ok.jsp
│ ├── bookBorrow.jsp
│ ├── bookBorrow_ok.jsp
│ ├── bookBorrowSort.jsp
│ ├── bookcase_add.jsp
│ ├── bookcase.jsp
│ ├── bookCase_Modify.jsp
│ ├── bookcase_ok.jsp
│ ├── book_detail.jsp
│ ├── book.jsp
│ ├── book_Modify.jsp
│ ├── book_ok.jsp
│ ├── bookQuery.jsp
│ ├── bookRenew.jsp
│ ├── bookRenew_ok.jsp
│ ├── bookType_add.jsp
│ ├── bookType.jsp
│ ├── bookType_Modify.jsp
│ ├── bookType_ok.jsp
│ ├── borrowQuery.jsp
│ ├── bremind.jsp
│ ├── copyright.jsp
│ ├── CSS
│ │ └── style.css
│ ├── error.jsp
│ ├── Images
│ │ ├── borrowBackRenew_back.gif
│ │ ├── borrowBackRenew.gif
│ │ ├── borrowBackRenew_r.gif
│ │ ├── borrow_if.gif
│ │ ├── copyright_t.gif
│ │ ├── error_b.gif
│ │ ├── error.jpg
│ │ ├── item_out.gif
│ │ ├── item_over.gif
│ │ ├── login.jpg
│ │ ├── main_booksort_1.gif
│ │ ├── main_booksort_2.gif
│ │ ├── main_booksort.gif
│ │ ├── main_readersort_1.gif
│ │ ├── more.GIF
│ │ ├── navigation_bg_bottom.gif
│ │ ├── navigation_bg.gif
│ │ ├── reader_checkbg.jpg
│ │ ├── search.gif
│ │ ├── subBG.jpg
│ │ ├── Thumbs.db
│ │ └── top_bg.gif
│ ├── JS
│ │ ├── function.js
│ │ ├── menu.JS
│ │ └── onclock.JS
│ ├── library_modify.jsp
│ ├── library_ok.jsp
│ ├── login_false.jsp
│ ├── login.jsp
│ ├── logout.jsp
│ ├── main.jsp
│ ├── manager_add.jsp
│ ├── manager.jsp
│ ├── manager_Modify.jsp
│ ├── manager_ok.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── navigation.jsp
│ ├── parameter_modify.jsp
│ ├── parameter_ok.jsp
│ ├── pwd_Modify.jsp
│ ├── pwd_ok.jsp
│ ├── reader_add.jsp
│ ├── reader_detail.jsp
│ ├── reader.jsp
│ ├── reader_Modify.jsp
│ ├── reader_ok.jsp
│ ├── readerType_add.jsp
│ ├── readerType.jsp
│ ├── readerType_Modify.jsp
│ ├── readerType_ok.jsp
│ ├── src
│ │ └── com
│ │ ├── action
│ │ │ ├── BookCase.java
│ │ │ ├── Book.java
│ │ │ ├── BookType.java
│ │ │ ├── Borrow.java
│ │ │ ├── Library.java
│ │ │ ├── Manager.java
│ │ │ ├── Parameter.java
│ │ │ ├── Publishing.java
│ │ │ ├── Reader.java
│ │ │ └── ReaderType.java
│ │ ├── actionForm
│ │ │ ├── BookCaseForm.java
│ │ │ ├── BookForm.java
│ │ │ ├── BookTypeForm.java
│ │ │ ├── BorrowForm.java
│ │ │ ├── LibraryForm.java
│ │ │ ├── ManagerForm.java
│ │ │ ├── ParameterForm.java
│ │ │ ├── PublishingForm.java
│ │ │ ├── ReaderForm.java
│ │ │ └── ReaderTypeForm.java
│ │ ├── connDB.properties
│ │ ├── core
│ │ │ ├── ChStr.java
│ │ │ └── ConnDB.java
│ │ ├── dao
│ │ │ ├── BookCaseDAO.java
│ │ │ ├── BookDAO.java
│ │ │ ├── BookTypeDAO.java
│ │ │ ├── BorrowDAO.java
│ │ │ ├── LibraryDAO.java
│ │ │ ├── ManagerDAO.java
│ │ │ ├── ParameterDAO.java
│ │ │ ├── PublishingDAO.java
│ │ │ ├── ReaderDAO.java
│ │ │ └── ReaderTypeDAO.java
│ │ └── wgh
│ │ └── struts
│ │ └── ApplicationResources.properties
│ └── WEB-INF
│ ├── classes
│ │ └── com
│ │ ├── action
│ │ │ ├── BookCase.class
│ │ │ ├── Book.class
│ │ │ ├── BookType.class
│ │ │ ├── Borrow.class
│ │ │ ├── Library.class
│ │ │ ├── Manager.class
│ │ │ ├── Parameter.class
│ │ │ ├── Publishing.class
│ │ │ ├── Reader.class
│ │ │ └── ReaderType.class
│ │ ├── actionForm
│ │ │ ├── BookCaseForm.class
│ │ │ ├── BookForm.class
│ │ │ ├── BookTypeForm.class
│ │ │ ├── BorrowForm.class
│ │ │ ├── LibraryForm.class
│ │ │ ├── ManagerForm.class
│ │ │ ├── ParameterForm.class
│ │ │ ├── PublishingForm.class
│ │ │ ├── ReaderForm.class
│ │ │ └── ReaderTypeForm.class
│ │ ├── connDB.properties
│ │ ├── core
│ │ │ ├── ChStr.class
│ │ │ └── ConnDB.class
│ │ ├── dao
│ │ │ ├── BookCaseDAO.class
│ │ │ ├── BookDAO.class
│ │ │ ├── BookTypeDAO.class
│ │ │ ├── BorrowDAO.class
│ │ │ ├── LibraryDAO.class
│ │ │ ├── ManagerDAO.class
│ │ │ ├── ParameterDAO.class
│ │ │ ├── PublishingDAO.class
│ │ │ ├── ReaderDAO.class
│ │ │ └── ReaderTypeDAO.class
│ │ └── wgh
│ │ └── struts
│ │ └── ApplicationResources.properties
│ ├── lib
│ │ ├── antlr.jar
│ │ ├── commons-beanutils.jar
│ │ ├── commons-digester.jar
│ │ ├── commons-fileupload.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-validator.jar
│ │ ├── jakarta-oro.jar
│ │ ├── mysql-connector-java-3.0.16-ga-bin.jar
│ │ └── struts.jar
│ ├── struts-bean.tld
│ ├── struts-config.xml
│ ├── struts-html.tld
│ ├── struts-logic.tld
│ ├── struts-nested.tld
│ ├── struts-tiles.tld
│ └── web.xml
├── 03
│ ├── build
│ │ └── classes
│ │ └── com
│ │ └── wy
│ │ ├── dao
│ │ │ ├── AfficheDao.class
│ │ │ ├── BigTypeDao.class
│ │ │ ├── GoodsDao.class
│ │ │ ├── LinkDao.class
│ │ │ ├── ManagerDao.class
│ │ │ ├── MemberDao.class
│ │ │ ├── OrderDao.class
│ │ │ ├── OrderDetailDao.class
│ │ │ └── SmallTypeDao.class
│ │ ├── domain
│ │ │ ├── AfficheForm.class
│ │ │ ├── BigTypeForm.class
│ │ │ ├── GoodsForm.class
│ │ │ ├── LinkForm.class
│ │ │ ├── ManagerForm.class
│ │ │ ├── MemberForm.class
│ │ │ ├── OrderDetailForm.class
│ │ │ ├── OrderForm.class
│ │ │ ├── SellGoodsForm.class
│ │ │ └── SmallTypeForm.class
│ │ ├── tool
│ │ │ ├── CountTime.class
│ │ │ ├── JDBConnection.class
│ │ │ ├── SelfRequestProcessor.class
│ │ │ └── UploadFile.class
│ │ └── webtier
│ │ ├── AfficheAction.class
│ │ ├── BigTypeAction.class
│ │ ├── GoodsAction.class
│ │ ├── LinkAction.class
│ │ ├── ManagerAction.class
│ │ ├── MemberAction.class
│ │ ├── OrderAction.class
│ │ └── SmallTypeAction.class
│ ├── Database
│ │ ├── db_shopping_Data.MDF
│ │ └── db_shopping_Log.LDF
│ ├── readme.doc
│ ├── src
│ │ └── com
│ │ └── wy
│ │ ├── dao
│ │ │ ├── AfficheDao.java
│ │ │ ├── BigTypeDao.java
│ │ │ ├── GoodsDao.java
│ │ │ ├── LinkDao.java
│ │ │ ├── ManagerDao.java
│ │ │ ├── MemberDao.java
│ │ │ ├── OrderDao.java
│ │ │ ├── OrderDetailDao.java
│ │ │ └── SmallTypeDao.java
│ │ ├── domain
│ │ │ ├── AfficheForm.java
│ │ │ ├── BigTypeForm.java
│ │ │ ├── GoodsForm.java
│ │ │ ├── LinkForm.java
│ │ │ ├── ManagerForm.java
│ │ │ ├── MemberForm.java
│ │ │ ├── OrderDetailForm.java
│ │ │ ├── OrderForm.java
│ │ │ ├── SellGoodsForm.java
│ │ │ └── SmallTypeForm.java
│ │ ├── tool
│ │ │ ├── CountTime.java
│ │ │ ├── JDBConnection.java
│ │ │ ├── SelfRequestProcessor.java
│ │ │ └── UploadFile.java
│ │ └── webtier
│ │ ├── AfficheAction.java
│ │ ├── BigTypeAction.java
│ │ ├── GoodsAction.java
│ │ ├── LinkAction.java
│ │ ├── ManagerAction.java
│ │ ├── MemberAction.java
│ │ ├── OrderAction.java
│ │ └── SmallTypeAction.java
│ └── WebContent
│ ├── bg-afficheContent.jsp
│ ├── bg-afficheInsert.jsp
│ ├── bg-afficheSelect.jsp
│ ├── bg-afficheUpdate.jsp
│ ├── bg-bigTypeInsert.jsp
│ ├── bg-bigTypeResult.jsp
│ ├── bg-bigTypeSelect.jsp
│ ├── bg-checkMemberResult.jsp
│ ├── bg-down.jsp
│ ├── bg-goodInsert.jsp
│ ├── bg-goodSelectBig.jsp
│ ├── bg-goodSelectContent.jsp
│ ├── bg-goodSelect.jsp
│ ├── bg-goodSelectSmall.jsp
│ ├── bg-goodsFreePirce.jsp
│ ├── bg-goodsMarkSelect.jsp
│ ├── bg-goodsResult.jsp
│ ├── bg-land.jsp
│ ├── bg-landResult.jsp
│ ├── bg-left.jsp
│ ├── bg-linkInsert.jsp
│ ├── bg-linkSelect.jsp
│ ├── bg-managerInsert.jsp
│ ├── bg-managerSelect.jsp
│ ├── bg-managerUpdatePassword.jsp
│ ├── bg-memberSuccess.jsp
│ ├── bg-orderContent.jsp
│ ├── bg-orderSelect.jsp
│ ├── bg-resultMember.jsp
│ ├── bg-resultTen.jsp
│ ├── bg-selectContent.jsp
│ ├── bg-selectMember.jsp
│ ├── bg-sellResult.jsp
│ ├── bg-smallTypeInsert.jsp
│ ├── bg-smallTypeResult.jsp
│ ├── bg-smallTypeSelect.jsp
│ ├── bg-up.jsp
│ ├── cart_add.jsp
│ ├── cart_checkOut.jsp
│ ├── cart_checkOutOrder.jsp
│ ├── cart_clear.jsp
│ ├── cart_detail.jsp
│ ├── cart_modify.jsp
│ ├── cart_see.jsp
│ ├── connection.jsp
│ ├── css
│ │ └── css.css
│ ├── fg-afficheSelect.jsp
│ ├── fg-checkMemberResult.jsp
│ ├── fg-down.jsp
│ ├── fg-four.jsp
│ ├── fg-goodSelectOne.jsp
│ ├── fg-goodSorts.jsp
│ ├── fg-left.jsp
│ ├── fg-memberRegister.jsp
│ ├── fg-One.jsp
│ ├── fg-selectBigGoods.jsp
│ ├── fg-selectFreeGoods.jsp
│ ├── fg-selectNewGoods.jsp
│ ├── fg-three.jsp
│ ├── fg-top.jsp
│ ├── fg-Two.jsp
│ ├── fg-updateMember.jsp
│ ├── goodsPicture
│ │ ├── 1195000722234.jpg
│ │ ├── 1195000845828.jpg
│ │ ├── 1195001047171.jpg
│ │ ├── 1195001141953.jpg
│ │ ├── 1195001276796.jpg
│ │ ├── 1195001359937.jpg
│ │ ├── 1195001507156.jpg
│ │ ├── 1195001612265.jpg
│ │ ├── 1195001711750.jpg
│ │ ├── 1195001840843.jpg
│ │ └── 1196077481203.jpg
│ ├── image
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── back.gif
│ │ ├── bg_01.jpg
│ │ ├── bg_02.jpg
│ │ ├── bg_05.jpg
│ │ ├── bg-add.gif
│ │ ├── bg.gif
│ │ ├── bg-land.gif
│ │ ├── bg-land.jpg
│ │ ├── bg_left01.jpg
│ │ ├── bg_left02.jpg
│ │ ├── bg_left03.jpg
│ │ ├── bg_left04.jpg
│ │ ├── clear.gif
│ │ ├── fg1.jpg
│ │ ├── fg2.jpg
│ │ ├── fg-land.gif
│ │ ├── fg_left01.jpg
│ │ ├── fg_left02.jpg
│ │ ├── fg_left03.jpg
│ │ ├── fg_left04.jpg
│ │ ├── fg_left05.jpg
│ │ ├── fg_right01.jpg
│ │ ├── fg_right02.jpg
│ │ ├── fg_top01.jpg
│ │ ├── fg_top02.jpg
│ │ ├── fg_top03.jpg
│ │ ├── fg_top04.jpg
│ │ ├── fg_top05.jpg
│ │ ├── save.jpg
│ │ ├── sign1.gif
│ │ ├── sign.gif
│ │ └── Thumbs.db
│ ├── index.jsp
│ ├── loginOut.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ └── WEB-INF
│ ├── lib
│ │ ├── commons-beanutils.jar
│ │ ├── commons-collections.jar
│ │ ├── commons-digester.jar
│ │ ├── commons-fileupload.jar
│ │ ├── commons-lang.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-validator.jar
│ │ ├── jakarta-oro.jar
│ │ ├── jspSmartUpload.jar
│ │ ├── junit.jar
│ │ ├── sqljdbc4.jar
│ │ ├── struts.jar
│ │ └── unittest.jar
│ ├── struts-bean.tld
│ ├── struts-config.xml
│ ├── struts-html.tld
│ ├── struts-logic.tld
│ ├── struts-nested.tld
│ ├── struts-template.tld
│ ├── struts-tiles.tld
│ └── web.xml
├── 04
│ ├── build
│ │ └── classes
│ │ └── com
│ │ ├── connDB.properties
│ │ └── wgh
│ │ ├── action
│ │ │ ├── Customer.class
│ │ │ ├── InfoType.class
│ │ │ ├── Manager.class
│ │ │ ├── Parameter.class
│ │ │ ├── Personnel.class
│ │ │ ├── SendLetter.class
│ │ │ ├── SendMail.class
│ │ │ └── ShortInfo.class
│ │ ├── actionForm
│ │ │ ├── CustomerForm.class
│ │ │ ├── InfoTypeForm.class
│ │ │ ├── ManagerForm.class
│ │ │ ├── ParameterForm.class
│ │ │ ├── PersonnelForm.class
│ │ │ ├── SendLetterForm.class
│ │ │ ├── SendMailForm.class
│ │ │ └── ShortInfoForm.class
│ │ ├── core
│ │ │ ├── ChStr.class
│ │ │ └── ConnDB.class
│ │ └── dao
│ │ ├── CustomerDAO.class
│ │ ├── InfoTypeDAO.class
│ │ ├── ManagerDAO.class
│ │ ├── ParameterDAO.class
│ │ ├── PersonnelDAO.class
│ │ ├── SendLetterDAO.class
│ │ ├── SendMailDAO.class
│ │ └── ShortInfoDAO.class
│ ├── Database
│ │ ├── db_ExpressLetter_Data.MDF
│ │ └── db_ExpressLetter_Log.LDF
│ ├── readme.doc
│ ├── src
│ │ └── com
│ │ ├── connDB.properties
│ │ └── wgh
│ │ ├── action
│ │ │ ├── Customer.java
│ │ │ ├── InfoType.java
│ │ │ ├── Manager.java
│ │ │ ├── Parameter.java
│ │ │ ├── Personnel.java
│ │ │ ├── SendLetter.java
│ │ │ ├── SendMail.java
│ │ │ └── ShortInfo.java
│ │ ├── actionForm
│ │ │ ├── CustomerForm.java
│ │ │ ├── InfoTypeForm.java
│ │ │ ├── ManagerForm.java
│ │ │ ├── ParameterForm.java
│ │ │ ├── PersonnelForm.java
│ │ │ ├── SendLetterForm.java
│ │ │ ├── SendMailForm.java
│ │ │ └── ShortInfoForm.java
│ │ ├── core
│ │ │ ├── ChStr.java
│ │ │ └── ConnDB.java
│ │ └── dao
│ │ ├── CustomerDAO.java
│ │ ├── InfoTypeDAO.java
│ │ ├── ManagerDAO.java
│ │ ├── ParameterDAO.java
│ │ ├── PersonnelDAO.java
│ │ ├── SendLetterDAO.java
│ │ ├── SendMailDAO.java
│ │ └── ShortInfoDAO.java
│ └── WebContent
│ ├── copyright.jsp
│ ├── CSS
│ │ └── style.css
│ ├── customer_add.jsp
│ ├── customer.jsp
│ ├── customer_modify.jsp
│ ├── customer_ok.jsp
│ ├── error.jsp
│ ├── getLetter.jsp
│ ├── history.jsp
│ ├── Images
│ │ ├── add.gif
│ │ ├── bottom_bg.jpg
│ │ ├── center_b.gif
│ │ ├── error_b.gif
│ │ ├── error.jpg
│ │ ├── item_out.gif
│ │ ├── item_over.gif
│ │ ├── jia.gif
│ │ ├── jian.gif
│ │ ├── left_bg.gif
│ │ ├── left_title.gif
│ │ ├── login_bottom.gif
│ │ ├── login_mid.gif
│ │ ├── login_top.gif
│ │ ├── main.jpg
│ │ ├── navigate_bg.jpg
│ │ ├── selectS_bottom.gif
│ │ ├── selectS_left.gif
│ │ ├── selectS_right.gif
│ │ ├── selectS_top.gif
│ │ ├── subBG.jpg
│ │ ├── top_bg.jpg
│ │ └── upFile_bg.gif
│ ├── infoType_add.jsp
│ ├── infoType.jsp
│ ├── infoType_ok.jsp
│ ├── JS
│ │ ├── function.js
│ │ ├── menu.JS
│ │ └── onclock.JS
│ ├── login.jsp
│ ├── logout.jsp
│ ├── main.jsp
│ ├── manager_add.jsp
│ ├── manager.jsp
│ ├── manager_ok.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── navigation.jsp
│ ├── parameter_ok.jsp
│ ├── personnel_add.jsp
│ ├── personnel.jsp
│ ├── personnel_modify.jsp
│ ├── personnel_ok.jsp
│ ├── pwd_Modify.jsp
│ ├── pwd_ok.jsp
│ ├── selectShortInfo.jsp
│ ├── sendLetter.jsp
│ ├── sendLetter_ok.jsp
│ ├── sendMail.jsp
│ ├── sendMail_ok.jsp
│ ├── shortInfo_add.jsp
│ ├── shortInfo.jsp
│ ├── shortInfo_modify.jsp
│ ├── shortInfo_ok.jsp
│ ├── sysParameter.jsp
│ ├── upFile_deal.jsp
│ ├── upFile.jsp
│ └── WEB-INF
│ ├── classes
│ │ └── com
│ │ ├── connDB.properties
│ │ └── wgh
│ │ ├── action
│ │ │ ├── Customer.class
│ │ │ ├── InfoType.class
│ │ │ ├── Manager.class
│ │ │ ├── Parameter.class
│ │ │ ├── Personnel.class
│ │ │ ├── SendLetter.class
│ │ │ ├── SendMail.class
│ │ │ └── ShortInfo.class
│ │ ├── actionForm
│ │ │ ├── CustomerForm.class
│ │ │ ├── InfoTypeForm.class
│ │ │ ├── ManagerForm.class
│ │ │ ├── ParameterForm.class
│ │ │ ├── PersonnelForm.class
│ │ │ ├── SendLetterForm.class
│ │ │ ├── SendMailForm.class
│ │ │ └── ShortInfoForm.class
│ │ ├── core
│ │ │ ├── ChStr.class
│ │ │ └── ConnDB.class
│ │ └── dao
│ │ ├── CustomerDAO.class
│ │ ├── InfoTypeDAO.class
│ │ ├── ManagerDAO.class
│ │ ├── ParameterDAO.class
│ │ ├── PersonnelDAO.class
│ │ ├── SendLetterDAO.class
│ │ ├── SendMailDAO.class
│ │ └── ShortInfoDAO.class
│ ├── lib
│ │ ├── activation.jar
│ │ ├── antlr.jar
│ │ ├── BestMail.jar
│ │ ├── commons-beanutils.jar
│ │ ├── commons-digester.jar
│ │ ├── commons-fileupload.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-validator.jar
│ │ ├── jakarta-oro.jar
│ │ ├── jspSmartUpload.jar
│ │ ├── mail.jar
│ │ ├── sqljdbc4.jar
│ │ └── struts.jar
│ ├── struts-bean.tld
│ ├── struts-config.xml
│ ├── struts-html.tld
│ ├── struts-logic.tld
│ ├── struts-nested.tld
│ ├── struts-tiles.tld
│ └── web.xml
├── 05
│ ├── build
│ │ └── classes
│ │ └── com
│ │ ├── applicationResources.properties
│ │ └── wy
│ │ ├── action
│ │ │ ├── CjAction.class
│ │ │ ├── DepartmentAction.class
│ │ │ ├── EmployeeAction.class
│ │ │ ├── InviteJobAction.class
│ │ │ ├── ManagerAction.class
│ │ │ ├── PayAction.class
│ │ │ └── TrainAction.class
│ │ ├── dao
│ │ │ └── ObjectDao.class
│ │ ├── form
│ │ │ ├── CjForm.class
│ │ │ ├── CjForm.hbm.xml
│ │ │ ├── DepartmentForm.class
│ │ │ ├── DepartmentForm.hbm.xml
│ │ │ ├── EmployeeForm.class
│ │ │ ├── EmployeeForm.hbm.xml
│ │ │ ├── InviteJobForm.class
│ │ │ ├── InviteJopForm.hbm.xml
│ │ │ ├── ManagerForm.class
│ │ │ ├── ManagerForm.hbm.xml
│ │ │ ├── PayForm.class
│ │ │ ├── PayForm.hbm.xml
│ │ │ ├── TrainForm.class
│ │ │ └── TrainForm.hbm.xml
│ │ └── tool
│ │ ├── GetAutoNumber.class
│ │ ├── GetSystemTime.class
│ │ ├── MyPagination.class
│ │ └── SelfRequestProcessor.class
│ ├── Database
│ │ ├── db_personManager_Data.MDF
│ │ └── db_personManager_Log.LDF
│ ├── readme.doc
│ ├── src
│ │ └── com
│ │ ├── applicationResources.properties
│ │ └── wy
│ │ ├── action
│ │ │ ├── CjAction.java
│ │ │ ├── DepartmentAction.java
│ │ │ ├── EmployeeAction.java
│ │ │ ├── InviteJobAction.java
│ │ │ ├── ManagerAction.java
│ │ │ ├── PayAction.java
│ │ │ └── TrainAction.java
│ │ ├── dao
│ │ │ └── ObjectDao.java
│ │ ├── form
│ │ │ ├── CjForm.hbm.xml
│ │ │ ├── CjForm.java
│ │ │ ├── DepartmentForm.hbm.xml
│ │ │ ├── DepartmentForm.java
│ │ │ ├── EmployeeForm.hbm.xml
│ │ │ ├── EmployeeForm.java
│ │ │ ├── InviteJobForm.java
│ │ │ ├── InviteJopForm.hbm.xml
│ │ │ ├── ManagerForm.hbm.xml
│ │ │ ├── ManagerForm.java
│ │ │ ├── PayForm.hbm.xml
│ │ │ ├── PayForm.java
│ │ │ ├── TrainForm.hbm.xml
│ │ │ └── TrainForm.java
│ │ └── tool
│ │ ├── GetAutoNumber.java
│ │ ├── GetSystemTime.java
│ │ ├── MyPagination.java
│ │ └── SelfRequestProcessor.java
│ └── WebContent
│ ├── cj_deawith.jsp
│ ├── cj_insert.jsp
│ ├── cj_query.jsp
│ ├── cj_queryOne.jsp
│ ├── css
│ │ └── style.css
│ ├── dealwith.jsp
│ ├── department_deawith.jsp
│ ├── department_insert.jsp
│ ├── department_query.jsp
│ ├── down.jsp
│ ├── employee_deawith.jsp
│ ├── employee_employ.jsp
│ ├── employee_insert.jsp
│ ├── employee_query.jsp
│ ├── employee_queryOne.jsp
│ ├── employee_update.jsp
│ ├── exitSave.jsp
│ ├── images
│ │ ├── addDepartment.gif
│ │ ├── addEmployee.gif
│ │ ├── addInvite.gif
│ │ ├── center1.jpg
│ │ ├── center2.jpg
│ │ ├── constituteCompensation.gif
│ │ ├── constituteDeal.gif
│ │ ├── constituteTrain.gif
│ │ ├── down.jpg
│ │ ├── land.gif
│ │ ├── managerLand.jpg
│ │ ├── Thumbs.db
│ │ ├── top-11.gif
│ │ ├── top-1.gif
│ │ ├── top1.jpg
│ │ ├── top-22.gif
│ │ ├── top-2.gif
│ │ ├── top2.jpg
│ │ ├── top-33.gif
│ │ ├── top-3.gif
│ │ └── top3.jpg
│ ├── index.jsp
│ ├── inviteJob_insert.jsp
│ ├── inviteJob_operation.jsp
│ ├── inviteJob_query.jsp
│ ├── inviteJob_queryOne.jsp
│ ├── js
│ │ ├── mm_menu.js
│ │ └── validate.js
│ ├── mainPage.jsp
│ ├── manager_insert.jsp
│ ├── manager_query.jsp
│ ├── manager_update.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── pay_deawith.jsp
│ ├── pay_insert.jsp
│ ├── pay_query.jsp
│ ├── top.jsp
│ ├── train_deawith.jsp
│ ├── train_insert.jsp
│ ├── train_query.jsp
│ ├── train_queryOne.jsp
│ └── WEB-INF
│ ├── applicationContext.xml
│ ├── c-1_0-rt.tld
│ ├── c-1_0.tld
│ ├── classes
│ │ └── com
│ │ ├── applicationResources.properties
│ │ └── wy
│ │ ├── action
│ │ │ ├── CjAction.class
│ │ │ ├── DepartmentAction.class
│ │ │ ├── EmployeeAction.class
│ │ │ ├── InviteJobAction.class
│ │ │ ├── ManagerAction.class
│ │ │ ├── PayAction.class
│ │ │ └── TrainAction.class
│ │ ├── dao
│ │ │ └── ObjectDao.class
│ │ ├── form
│ │ │ ├── CjForm.class
│ │ │ ├── CjForm.hbm.xml
│ │ │ ├── DepartmentForm.class
│ │ │ ├── DepartmentForm.hbm.xml
│ │ │ ├── EmployeeForm.class
│ │ │ ├── EmployeeForm.hbm.xml
│ │ │ ├── InviteJobForm.class
│ │ │ ├── InviteJopForm.hbm.xml
│ │ │ ├── ManagerForm.class
│ │ │ ├── ManagerForm.hbm.xml
│ │ │ ├── PayForm.class
│ │ │ ├── PayForm.hbm.xml
│ │ │ ├── TrainForm.class
│ │ │ └── TrainForm.hbm.xml
│ │ └── tool
│ │ ├── GetAutoNumber.class
│ │ ├── GetSystemTime.class
│ │ ├── MyPagination.class
│ │ └── SelfRequestProcessor.class
│ ├── c.tld
│ ├── fmt-1_0-rt.tld
│ ├── fmt-1_0.tld
│ ├── fmt.tld
│ ├── fn.tld
│ ├── lib
│ │ ├── activation.jar
│ │ ├── antlr-2.7.5H3.jar
│ │ ├── antlr.jar
│ │ ├── aopalliance.jar
│ │ ├── axis.jar
│ │ ├── c3p0-0.8.5.2.jar
│ │ ├── cglib-nodep-2.1_3.jar
│ │ ├── classes12.jar
│ │ ├── commons-beanutils.jar
│ │ ├── commons-collections.jar
│ │ ├── commons-dbcp-1.2.1.jar
│ │ ├── commons-digester.jar
│ │ ├── commons-discovery-0.2.jar
│ │ ├── commons-fileupload-1.2.jar
│ │ ├── commons-fileupload.jar
│ │ ├── commons-io-1.3.1.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-pool.jar
│ │ ├── commons-validator.jar
│ │ ├── cos.jar
│ │ ├── dom4j-1.6.1.jar
│ │ ├── ehcache-1.1.jar
│ │ ├── filemover.jar
│ │ ├── hessian-3.0.13.jar
│ │ ├── hibernate3.jar
│ │ ├── j2ee.jar
│ │ ├── jakarta-oro.jar
│ │ ├── jaxrpc.jar
│ │ ├── jta.jar
│ │ ├── junit.jar
│ │ ├── mail.jar
│ │ ├── mysql-connector-java-3.1.10-bin.jar
│ │ ├── pull-parser-2.1.10.jar
│ │ ├── quartz-1.5.1.jar
│ │ ├── saaj.jar
│ │ ├── spring-hibernate3.jar
│ │ ├── spring.jar
│ │ ├── spring-mock.jar
│ │ ├── sqljdbc.jar
│ │ ├── struts.jar
│ │ ├── velocity-1.4.jar
│ │ └── wsdl4j-1.5.1.jar
│ ├── permittedTaglibs.tld
│ ├── scriptfree.tld
│ ├── spring.tld
│ ├── sql-1_0-rt.tld
│ ├── sql-1_0.tld
│ ├── sql.tld
│ ├── struts-bean.tld
│ ├── struts-config.xml
│ ├── struts-html.tld
│ ├── struts-logic.tld
│ ├── struts-nested.tld
│ ├── struts-tiles.tld
│ ├── validator-rules.xml
│ ├── web.xml
│ ├── x-1_0-rt.tld
│ ├── x-1_0.tld
│ └── x.tld
├── 06
│ ├── build
│ │ └── classes
│ │ ├── com
│ │ │ ├── hiernate
│ │ │ │ ├── persistence
│ │ │ │ │ ├── Bm.class
│ │ │ │ │ ├── Bm.hbm.xml
│ │ │ │ │ ├── Chuchai.class
│ │ │ │ │ ├── Chuchai.hbm.xml
│ │ │ │ │ ├── Meeting.class
│ │ │ │ │ ├── Meeting.hbm.xml
│ │ │ │ │ ├── Menu.class
│ │ │ │ │ ├── Menu.hbm.xml
│ │ │ │ │ ├── Onduty.class
│ │ │ │ │ ├── Onduty.hbm.xml
│ │ │ │ │ ├── Person.class
│ │ │ │ │ ├── Person.hbm.xml
│ │ │ │ │ ├── Placard.class
│ │ │ │ │ ├── Placard.hbm.xml
│ │ │ │ │ ├── Qingjia.class
│ │ │ │ │ ├── Qingjia.hbm.xml
│ │ │ │ │ ├── Qiye.class
│ │ │ │ │ ├── Qiye.hbm.xml
│ │ │ │ │ ├── Shenhe.class
│ │ │ │ │ ├── Shenhe.hbm.xml
│ │ │ │ │ ├── TongXunAdd.class
│ │ │ │ │ ├── TongXunAdd.hbm.xml
│ │ │ │ │ ├── Tongxun.class
│ │ │ │ │ ├── Tongxun.hbm.xml
│ │ │ │ │ ├── User.class
│ │ │ │ │ ├── User.hbm.xml
│ │ │ │ │ ├── Waichu.class
│ │ │ │ │ └── Waichu.hbm.xml
│ │ │ │ └── util
│ │ │ │ ├── GetHibernate.class
│ │ │ │ ├── GetTime.class
│ │ │ │ ├── HibernateUtil.class
│ │ │ │ └── Test.class
│ │ │ ├── struts
│ │ │ │ ├── action
│ │ │ │ │ ├── FindMenuAction.class
│ │ │ │ │ └── FindUserAction.class
│ │ │ │ ├── filter
│ │ │ │ │ └── MyFilter.class
│ │ │ │ └── form
│ │ │ │ └── UserForm.class
│ │ │ └── yourcompany
│ │ │ └── struts
│ │ │ └── ApplicationResources.properties
│ │ ├── hibernate.properties
│ │ └── log4j.properties
│ ├── Database
│ │ ├── db_work_Data.MDF
│ │ └── db_work_Log.LDF
│ ├── readme.doc
│ ├── src
│ │ ├── com
│ │ │ ├── hiernate
│ │ │ │ ├── persistence
│ │ │ │ │ ├── Bm.hbm.xml
│ │ │ │ │ ├── Bm.java
│ │ │ │ │ ├── Chuchai.hbm.xml
│ │ │ │ │ ├── Chuchai.java
│ │ │ │ │ ├── Meeting.hbm.xml
│ │ │ │ │ ├── Meeting.java
│ │ │ │ │ ├── Menu.hbm.xml
│ │ │ │ │ ├── Menu.java
│ │ │ │ │ ├── Onduty.hbm.xml
│ │ │ │ │ ├── Onduty.java
│ │ │ │ │ ├── Person.hbm.xml
│ │ │ │ │ ├── Person.java
│ │ │ │ │ ├── Placard.hbm.xml
│ │ │ │ │ ├── Placard.java
│ │ │ │ │ ├── Qingjia.hbm.xml
│ │ │ │ │ ├── Qingjia.java
│ │ │ │ │ ├── Qiye.hbm.xml
│ │ │ │ │ ├── Qiye.java
│ │ │ │ │ ├── Shenhe.hbm.xml
│ │ │ │ │ ├── Shenhe.java
│ │ │ │ │ ├── TongXunAdd.hbm.xml
│ │ │ │ │ ├── TongXunAdd.java
│ │ │ │ │ ├── Tongxun.hbm.xml
│ │ │ │ │ ├── Tongxun.java
│ │ │ │ │ ├── User.hbm.xml
│ │ │ │ │ ├── User.java
│ │ │ │ │ ├── Waichu.hbm.xml
│ │ │ │ │ └── Waichu.java
│ │ │ │ └── util
│ │ │ │ ├── GetHibernate.java
│ │ │ │ ├── GetTime.java
│ │ │ │ ├── HibernateUtil.java
│ │ │ │ └── Test.java
│ │ │ ├── struts
│ │ │ │ ├── action
│ │ │ │ │ ├── FindMenuAction.java
│ │ │ │ │ └── FindUserAction.java
│ │ │ │ ├── filter
│ │ │ │ │ └── MyFilter.java
│ │ │ │ └── form
│ │ │ │ └── UserForm.java
│ │ │ └── yourcompany
│ │ │ └── struts
│ │ │ └── ApplicationResources.properties
│ │ ├── hibernate.properties
│ │ └── log4j.properties
│ └── WebContent
│ ├── CSS
│ │ └── style.css
│ ├── default.jsp
│ ├── EveryDay
│ │ ├── BBC
│ │ │ ├── bbc_addCenter.jsp
│ │ │ ├── bbc_add.jsp
│ │ │ ├── bbc_del.jsp
│ │ │ ├── bbc_del_ok.jsp
│ │ │ ├── bbc_detail.jsp
│ │ │ ├── bbc_index.jsp
│ │ │ ├── bbc_modifyCenter.jsp
│ │ │ ├── bbc_modify.jsp
│ │ │ ├── bbc_nomodify.jsp
│ │ │ └── noaddbbc.jsp
│ │ └── meeting
│ │ ├── meeting_add2.jsp
│ │ ├── meeting_addCenter.jsp
│ │ ├── meeting_add.jsp
│ │ ├── meeting_delno.jsp
│ │ ├── meeting_del_ok.jsp
│ │ ├── meeting_detail.jsp
│ │ ├── meeting_index.jsp
│ │ └── noaddmeeting.jsp
│ ├── Images
│ │ ├── 3.gif
│ │ ├── 88.gif
│ │ ├── about.jpg
│ │ ├── add.gif
│ │ ├── asasas.jpg
│ │ ├── bhj.jpg
│ │ ├── bj.gif
│ │ ├── close.jpg
│ │ ├── date.gif
│ │ ├── del.gif
│ │ ├── detail.gif
│ │ ├── dfff.jpg
│ │ ├── email.gif
│ │ ├── folder.gif
│ │ ├── home.jpg
│ │ ├── icon_smile.GIF
│ │ ├── isexists.gif
│ │ ├── jia.gif
│ │ ├── jian.gif
│ │ ├── jian_null.gif
│ │ ├── jian_s.gif
│ │ ├── left_bg_bottom.jpg
│ │ ├── left_bg.jpg
│ │ ├── left.jpg
│ │ ├── main_bottom.jpg
│ │ ├── main_center.jpg
│ │ ├── main_top.JPG
│ │ ├── modify.gif
│ │ ├── noword.jpg
│ │ ├── num
│ │ │ ├── 0.gif
│ │ │ ├── 1.gif
│ │ │ ├── 2.gif
│ │ │ ├── 3.gif
│ │ │ ├── 4.gif
│ │ │ ├── 5.gif
│ │ │ ├── 6.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ ├── 9.gif
│ │ │ └── Thumbs.db
│ │ ├── right.jpg
│ │ ├── succ.gif
│ │ ├── swf
│ │ │ ├── bgg.jpg
│ │ │ ├── bj.jpg
│ │ │ ├── main.gif
│ │ │ ├── new.swf
│ │ │ └── Thumbs.db
│ │ ├── Thumbs.db
│ │ ├── tiao.jpg
│ │ ├── top_bg.jpg
│ │ ├── top.jpg
│ │ ├── waichuan.gif
│ │ └── waichuxiaojia.gif
│ ├── index.jsp
│ ├── JS
│ │ └── DateTime2.js
│ ├── Kaoqin
│ │ ├── calender.jsp
│ │ ├── chuchai_add_cl.jsp
│ │ ├── chuchai_add.jsp
│ │ ├── chuchai_index.jsp
│ │ ├── chuchai_update.jsp
│ │ ├── chuchai_xianshi.jsp
│ │ ├── _notes
│ │ │ └── waichu_add.jsp.mno
│ │ ├── onduty_add_cl.jsp
│ │ ├── onduty_add.jsp
│ │ ├── onduty_index.jsp
│ │ ├── onduty_xianshi.jsp
│ │ ├── qingjia_add_cl.jsp
│ │ ├── qingjia_add.jsp
│ │ ├── qingjia_indexCenter.jsp
│ │ ├── qingjia_index.jsp
│ │ ├── qingjia_xianshi.jsp
│ │ ├── waichu_add_cl.jsp
│ │ ├── waichu_add.jsp
│ │ ├── waichuCenter.jsp
│ │ ├── waichu.jsp
│ │ └── waichu_xianshi.jsp
│ ├── left.jsp
│ ├── main.jsp
│ ├── menu.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── Planmanage
│ │ ├── bm_add_cl.jsp
│ │ ├── bm_add.jsp
│ │ ├── bm_del.jsp
│ │ ├── bm_index.jsp
│ │ ├── bmnodel.jsp
│ │ ├── bm_xianshi.jsp
│ │ ├── calender.jsp
│ │ ├── noaddbumen.jsp
│ │ ├── noaddqiye.jsp
│ │ ├── onmodify.jsp
│ │ ├── person_add_cl.jsp
│ │ ├── person_add.jsp
│ │ ├── person_del.jsp
│ │ ├── person_index.jsp
│ │ ├── personodel.jsp
│ │ ├── person_xianshi.jsp
│ │ ├── qiye_del.jsp
│ │ ├── qiye_planadd.jsp
│ │ ├── qiye_planindex.jsp
│ │ ├── qiye_plan.jsp
│ │ └── qiye_xianshi.jsp
│ ├── Shenhe
│ │ ├── chenggong.htm
│ │ ├── del.jsp
│ │ ├── fa_add.jsp
│ │ ├── fa.jsp
│ │ ├── piguanCenter.jsp
│ │ ├── piguan.jsp
│ │ ├── update.jsp
│ │ ├── updateShen.jsp
│ │ ├── up.jsp
│ │ └── xianshi.jsp
│ ├── TongXunManage
│ │ ├── calender.jsp
│ │ ├── del.jsp
│ │ ├── lianxianshi.jsp
│ │ ├── tongxun_add.jsp
│ │ ├── tongxun_addWork.jsp
│ │ ├── tongxun_del.jsp
│ │ ├── tongxun_index.jsp
│ │ ├── tongxun_modify.jsp
│ │ ├── tongxun_modifySave.jsp
│ │ ├── tongxun_modifyurl.jsp
│ │ ├── tongxun_noadd.jsp
│ │ ├── tongxun_nomodify.jsp
│ │ ├── tongxun_nomodifys.jsp
│ │ ├── tongxun_xianshi.jsp
│ │ ├── tongxun_xianxiadd.jsp
│ │ ├── tongxun_xianxi.jsp
│ │ ├── update.jsp
│ │ ├── updateurl.jsp
│ │ └── url.jsp
│ ├── top.jsp
│ ├── unsuccess.jsp
│ ├── UserManage
│ │ ├── personnel_add2.jsp
│ │ ├── personnel_add.jsp
│ │ ├── personnel_best.jsp
│ │ ├── personnel_del.jsp
│ │ ├── personnel_deluser.jsp
│ │ ├── personnel_detail.jsp
│ │ ├── personnel_info1.jsp
│ │ ├── personnel_info.jsp
│ │ ├── personnel_modify.jsp
│ │ ├── personnel_modifyPWD.jsp
│ │ ├── personnel_nomodify.jsp
│ │ ├── personnel_nomodifys.jsp
│ │ ├── personnel_top.jsp
│ │ ├── personnel_updateCenter.jsp
│ │ └── personnel_update.jsp
│ └── WEB-INF
│ ├── classes
│ │ ├── com
│ │ │ ├── hiernate
│ │ │ │ ├── persistence
│ │ │ │ │ ├── Bm.class
│ │ │ │ │ ├── Bm.hbm.xml
│ │ │ │ │ ├── Chuchai.class
│ │ │ │ │ ├── Chuchai.hbm.xml
│ │ │ │ │ ├── Meeting.class
│ │ │ │ │ ├── Meeting.hbm.xml
│ │ │ │ │ ├── Menu.class
│ │ │ │ │ ├── Menu.hbm.xml
│ │ │ │ │ ├── Onduty.class
│ │ │ │ │ ├── Onduty.hbm.xml
│ │ │ │ │ ├── Person.class
│ │ │ │ │ ├── Person.hbm.xml
│ │ │ │ │ ├── Placard.class
│ │ │ │ │ ├── Placard.hbm.xml
│ │ │ │ │ ├── Qingjia.class
│ │ │ │ │ ├── Qingjia.hbm.xml
│ │ │ │ │ ├── Qiye.class
│ │ │ │ │ ├── Qiye.hbm.xml
│ │ │ │ │ ├── Shenhe.class
│ │ │ │ │ ├── Shenhe.hbm.xml
│ │ │ │ │ ├── TongXunAdd.class
│ │ │ │ │ ├── TongXunAdd.hbm.xml
│ │ │ │ │ ├── Tongxun.class
│ │ │ │ │ ├── Tongxun.hbm.xml
│ │ │ │ │ ├── User.class
│ │ │ │ │ ├── User.hbm.xml
│ │ │ │ │ ├── Waichu.class
│ │ │ │ │ └── Waichu.hbm.xml
│ │ │ │ └── util
│ │ │ │ ├── GetHibernate.class
│ │ │ │ ├── GetTime.class
│ │ │ │ ├── HibernateUtil.class
│ │ │ │ └── Test.class
│ │ │ ├── struts
│ │ │ │ ├── action
│ │ │ │ │ ├── FindMenuAction.class
│ │ │ │ │ └── FindUserAction.class
│ │ │ │ ├── filter
│ │ │ │ │ └── MyFilter.class
│ │ │ │ └── form
│ │ │ │ └── UserForm.class
│ │ │ └── yourcompany
│ │ │ └── struts
│ │ │ └── ApplicationResources.properties
│ │ ├── hibernate.properties
│ │ └── log4j.properties
│ ├── lib
│ │ ├── antlr-2.7.5H3.jar
│ │ ├── asm-attrs.jar
│ │ ├── asm.jar
│ │ ├── c3p0-0.9.0.jar
│ │ ├── cglib-2.1.3.jar
│ │ ├── commons-beanutils.jar
│ │ ├── commons-collections-2.1.1.jar
│ │ ├── commons-collections.jar
│ │ ├── commons-digester.jar
│ │ ├── commons-fileupload.jar
│ │ ├── commons-lang.jar
│ │ ├── commons-logging-1.0.4.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-validator.jar
│ │ ├── concurrent-1.3.2.jar
│ │ ├── connector.jar
│ │ ├── dom4j-1.6.1.jar
│ │ ├── ehcache-1.1.jar
│ │ ├── hibernate3.jar
│ │ ├── jaas.jar
│ │ ├── jacc-1_0-fr.jar
│ │ ├── jakarta-oro.jar
│ │ ├── jaxen-1.1-beta-7.jar
│ │ ├── jboss-cache.jar
│ │ ├── jboss-common.jar
│ │ ├── jboss-jmx.jar
│ │ ├── jboss-system.jar
│ │ ├── jdbc2_0-stdext.jar
│ │ ├── jgroups-2.2.8.jar
│ │ ├── jta.jar
│ │ ├── jtds-1.2.jar
│ │ ├── log4j-1.2.11.jar
│ │ ├── oscache-2.1.jar
│ │ ├── proxool-0.8.3.jar
│ │ ├── sqljdbc4.jar
│ │ ├── struts.jar
│ │ ├── struts-legacy.jar
│ │ ├── swarmcache-1.0rc2.jar
│ │ ├── xerces-2.6.2.jar
│ │ └── xml-apis.jar
│ ├── struts-bean.tld
│ ├── struts-config.xml
│ ├── struts-html.tld
│ ├── struts-logic.tld
│ ├── struts-nested.tld
│ ├── struts-template.tld
│ ├── struts-tiles.tld
│ ├── validator-rules.xml
│ └── web.xml
├── 07
│ ├── build
│ │ └── classes
│ │ └── com
│ │ └── wy
│ │ ├── CountTime.class
│ │ └── JDBConnection.class
│ ├── Database
│ │ ├── db_WuLiu_Data.MDF
│ │ └── db_WuLiu_Log.LDF
│ ├── readme.doc
│ ├── src
│ │ └── com
│ │ └── wy
│ │ ├── CountTime.java
│ │ └── JDBConnection.java
│ ├── WebContent
│ │ ├── active_select.jsp
│ │ ├── active_show.jsp
│ │ ├── car_addConfig.jsp
│ │ ├── car_add.jsp
│ │ ├── car_changeConfig.jsp
│ │ ├── car_change.jsp
│ │ ├── car_delete.jsp
│ │ ├── car_select.jsp
│ │ ├── car_show.jsp
│ │ ├── CSS
│ │ │ └── style.css
│ │ ├── down.jsp
│ │ ├── enterprise_addConfig.jsp
│ │ ├── enterprise_add.jsp
│ │ ├── enterprise_changeConfig.jsp
│ │ ├── enterprise_delet.jsp
│ │ ├── enterprise_select.jsp
│ │ ├── enterprise_show.jsp
│ │ ├── found_config.jsp
│ │ ├── found.jsp
│ │ ├── good_config.jsp
│ │ ├── goods_add.jsp
│ │ ├── goods_changeConfig.jsp
│ │ ├── goods_change.jsp
│ │ ├── goods_delete.jsp
│ │ ├── goods_select.jsp
│ │ ├── goods_xiangxi.jsp
│ │ ├── image
│ │ │ ├── 10.jpg
│ │ │ ├── 111.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 15.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 17.jpg
│ │ │ ├── 18.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 1.jpg
│ │ │ ├── 20.jpg
│ │ │ ├── 21.jpg
│ │ │ ├── 22.jpg
│ │ │ ├── 23.jpg
│ │ │ ├── 24.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 7.jpg
│ │ │ ├── 8.jpg
│ │ │ ├── 9.jpg
│ │ │ ├── bg-1.jpg
│ │ │ ├── bg-2.jpg
│ │ │ ├── bg-3.jpg
│ │ │ ├── bg-4.jpg
│ │ │ ├── bg-5.jpg
│ │ │ ├── bg-6.jpg
│ │ │ ├── bg-7.jpg
│ │ │ ├── bg-8.jpg
│ │ │ ├── font.swf
│ │ │ ├── index.swf
│ │ │ └── top.swf
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── number.js
│ │ │ └── road.js
│ │ ├── knowledge_select.jsp
│ │ ├── knowledge_show.jsp
│ │ ├── left.jsp
│ │ ├── login_config.jsp
│ │ ├── login.jsp
│ │ ├── logout.jsp
│ │ ├── Manager
│ │ │ ├── active_add.jsp
│ │ │ ├── active_changeConfig.jsp
│ │ │ ├── active_config.jsp
│ │ │ ├── active_delete.jsp
│ │ │ ├── active_select.jsp
│ │ │ ├── active_show.jsp
│ │ │ ├── car_changeConfig.jsp
│ │ │ ├── car_change.jsp
│ │ │ ├── car_delete.jsp
│ │ │ ├── car_select.jsp
│ │ │ ├── car_xiangxi.jsp
│ │ │ ├── down.jsp
│ │ │ ├── enterprise_changeConfig.jsp
│ │ │ ├── enterprise_delete.jsp
│ │ │ ├── enterprise_select.jsp
│ │ │ ├── enterprise_xiangxi.jsp
│ │ │ ├── goods_changeConfig.jsp
│ │ │ ├── goods_change.jsp
│ │ │ ├── goods_delete.jsp
│ │ │ ├── goods_select.jsp
│ │ │ ├── goods_xiangxi.jsp
│ │ │ ├── index.jsp
│ │ │ ├── knowledge_addconfig.jsp
│ │ │ ├── knowledge_add.jsp
│ │ │ ├── knowledge_changeConfig.jsp
│ │ │ ├── knowledge_change.jsp
│ │ │ ├── knowledge_delete.jsp
│ │ │ ├── knowledge_select.jsp
│ │ │ ├── left.jsp
│ │ │ ├── manager_config.jsp
│ │ │ ├── manager_login.jsp
│ │ │ ├── member_changeConfig.jsp
│ │ │ ├── member_change.jsp
│ │ │ ├── member_delete.jsp
│ │ │ ├── member_select.jsp
│ │ │ ├── mtop.jsp
│ │ │ ├── number.js
│ │ │ ├── placard_add.jsp
│ │ │ ├── placard_changeConfig.jsp
│ │ │ ├── placard_change.jsp
│ │ │ ├── placard_delete.jsp
│ │ │ ├── placard_select.jsp
│ │ │ ├── placard_showConfig.jsp
│ │ │ ├── road.js
│ │ │ ├── tool_assistant.jsp
│ │ │ └── tool_road.jsp
│ │ ├── META-INF
│ │ │ ├── context.xml
│ │ │ └── MANIFEST.MF
│ │ ├── placard_select.jsp
│ │ ├── regist_config.jsp
│ │ ├── register.jsp
│ │ ├── right.jsp
│ │ ├── tool_assistant.jsp
│ │ ├── tool_road.jsp
│ │ ├── top.jsp
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ └── com
│ │ │ └── wy
│ │ │ ├── CountTime.class
│ │ │ └── JDBConnection.class
│ │ ├── lib
│ │ │ └── sqljdbc4.jar
│ │ └── web.xml
│ └── 程序使用说明.txt
├── 08
│ ├── build
│ │ └── classes
│ │ └── com
│ │ ├── connDB.properties
│ │ └── wgh
│ │ ├── action
│ │ │ ├── Lesson.class
│ │ │ ├── Manager.class
│ │ │ ├── Questions.class
│ │ │ ├── SelfRequestProcessor.class
│ │ │ ├── StartExam.class
│ │ │ ├── Student.class
│ │ │ ├── StuResult.class
│ │ │ ├── TaoTi.class
│ │ │ └── temp.class
│ │ ├── actionForm
│ │ │ ├── LessonForm.class
│ │ │ ├── ManagerForm.class
│ │ │ ├── MoreSelect.class
│ │ │ ├── QueryResultIfForm.class
│ │ │ ├── QuestionsForm.class
│ │ │ ├── StudentForm.class
│ │ │ ├── StuResultForm.class
│ │ │ └── TaoTiForm.class
│ │ ├── core
│ │ │ ├── ChStr.class
│ │ │ └── ConnDB.class
│ │ ├── dao
│ │ │ ├── LessonDAO.class
│ │ │ ├── ManagerDAO.class
│ │ │ ├── QuestionsDAO.class
│ │ │ ├── StartExamDAO.class
│ │ │ ├── StudentDAO.class
│ │ │ ├── StuResultDAO.class
│ │ │ └── TaoTiDAO.class
│ │ └── struts
│ │ └── ApplicationResources.properties
│ ├── Database
│ │ ├── db_netExam_Data.MDF
│ │ └── db_netExam_Log.LDF
│ ├── readme.doc
│ ├── src
│ │ └── com
│ │ ├── connDB.properties
│ │ └── wgh
│ │ ├── action
│ │ │ ├── Lesson.java
│ │ │ ├── Manager.java
│ │ │ ├── Questions.java
│ │ │ ├── SelfRequestProcessor.java
│ │ │ ├── StartExam.java
│ │ │ ├── Student.java
│ │ │ ├── StuResult.java
│ │ │ ├── TaoTi.java
│ │ │ └── temp.java
│ │ ├── actionForm
│ │ │ ├── LessonForm.java
│ │ │ ├── ManagerForm.java
│ │ │ ├── MoreSelect.java
│ │ │ ├── QueryResultIfForm.java
│ │ │ ├── QuestionsForm.java
│ │ │ ├── StudentForm.java
│ │ │ ├── StuResultForm.java
│ │ │ └── TaoTiForm.java
│ │ ├── core
│ │ │ ├── ChStr.java
│ │ │ └── ConnDB.java
│ │ ├── dao
│ │ │ ├── LessonDAO.java
│ │ │ ├── ManagerDAO.java
│ │ │ ├── QuestionsDAO.java
│ │ │ ├── StartExamDAO.java
│ │ │ ├── StudentDAO.java
│ │ │ ├── StuResultDAO.java
│ │ │ └── TaoTiDAO.java
│ │ └── struts
│ │ └── ApplicationResources.properties
│ └── WebContent
│ ├── copyright.jsp
│ ├── CSS
│ │ └── style.css
│ ├── dealNull.jsp
│ ├── default.jsp
│ ├── error.jsp
│ ├── examRule.jsp
│ ├── Images
│ │ ├── add.gif
│ │ ├── bg_01.gif
│ │ ├── default_bottom.JPG
│ │ ├── default_mid.JPG
│ │ ├── default_top.jpg
│ │ ├── error.jpg
│ │ ├── f_ico.gif
│ │ ├── login_bottom.jpg
│ │ ├── login_mid.jpg
│ │ ├── login_top.jpg
│ │ ├── m_ico1.gif
│ │ ├── m_ico.gif
│ │ ├── m_login.jpg
│ │ ├── m_top.jpg
│ │ ├── seedPwd.gif
│ │ ├── startExam_bottom.jpg
│ │ ├── startExam_ico.jpg
│ │ ├── startExam_leftBottom.jpg
│ │ ├── startExam_left.jpg
│ │ ├── startExam_leftTop.jpg
│ │ ├── startExam_rightBottom.jpg
│ │ ├── startExam_right.jpg
│ │ ├── startExam_rightTop.jpg
│ │ ├── startExam_top.jpg
│ │ ├── step1.gif
│ │ ├── step2.gif
│ │ ├── step3.gif
│ │ ├── subBG.jpg
│ │ ├── Thumbs.db
│ │ └── top_bg.jpg
│ ├── index.jsp
│ ├── JS
│ │ ├── AjaxRequest.js
│ │ ├── function.js
│ │ └── onclock.JS
│ ├── logout.jsp
│ ├── manage
│ │ ├── copyright.jsp
│ │ ├── error.jsp
│ │ ├── left.jsp
│ │ ├── lesson_add.jsp
│ │ ├── lesson.jsp
│ │ ├── lesson_ok.jsp
│ │ ├── login.jsp
│ │ ├── logout.jsp
│ │ ├── main.jsp
│ │ ├── manager_add.jsp
│ │ ├── manager.jsp
│ │ ├── manager_ok.jsp
│ │ ├── pwd_Modify.jsp
│ │ ├── pwd_ok.jsp
│ │ ├── questions_Add.jsp
│ │ ├── questions.jsp
│ │ ├── questions_Modify.jsp
│ │ ├── questions_ok.jsp
│ │ ├── selTaoTi.jsp
│ │ ├── student.jsp
│ │ ├── student_ok.jsp
│ │ ├── taoTi_Add.jsp
│ │ ├── taoTi.jsp
│ │ ├── taoTi_Modify.jsp
│ │ ├── taoTi_ok.jsp
│ │ └── top.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── noenLesson.jsp
│ ├── prompt.jsp
│ ├── ready.jsp
│ ├── register.jsp
│ ├── seekPwd1.jsp
│ ├── seekPwd2.jsp
│ ├── seekPwd.jsp
│ ├── selectLesson.jsp
│ ├── showRemainTime.jsp
│ ├── showStartTime.jsp
│ ├── startExam.jsp
│ ├── student_Modify.jsp
│ ├── studentM_ok.jsp
│ ├── student_ok.jsp
│ ├── stuResultQuery.jsp
│ ├── submitTestPaperok.jsp
│ ├── top.jsp
│ └── WEB-INF
│ ├── classes
│ │ └── com
│ │ ├── connDB.properties
│ │ └── wgh
│ │ ├── action
│ │ │ ├── Lesson.class
│ │ │ ├── Manager.class
│ │ │ ├── Questions.class
│ │ │ ├── SelfRequestProcessor.class
│ │ │ ├── StartExam.class
│ │ │ ├── Student.class
│ │ │ ├── StuResult.class
│ │ │ ├── TaoTi.class
│ │ │ └── temp.class
│ │ ├── actionForm
│ │ │ ├── LessonForm.class
│ │ │ ├── ManagerForm.class
│ │ │ ├── MoreSelect.class
│ │ │ ├── QueryResultIfForm.class
│ │ │ ├── QuestionsForm.class
│ │ │ ├── StudentForm.class
│ │ │ ├── StuResultForm.class
│ │ │ └── TaoTiForm.class
│ │ ├── core
│ │ │ ├── ChStr.class
│ │ │ └── ConnDB.class
│ │ ├── dao
│ │ │ ├── LessonDAO.class
│ │ │ ├── ManagerDAO.class
│ │ │ ├── QuestionsDAO.class
│ │ │ ├── StartExamDAO.class
│ │ │ ├── StudentDAO.class
│ │ │ ├── StuResultDAO.class
│ │ │ └── TaoTiDAO.class
│ │ └── struts
│ │ └── ApplicationResources.properties
│ ├── lib
│ │ ├── antlr.jar
│ │ ├── commons-beanutils.jar
│ │ ├── commons-digester.jar
│ │ ├── commons-fileupload.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-validator.jar
│ │ ├── jakarta-oro.jar
│ │ ├── sqljdbc4.jar
│ │ └── struts.jar
│ ├── struts-bean.tld
│ ├── struts-config.xml
│ ├── struts-html.tld
│ ├── struts-logic.tld
│ ├── struts-nested.tld
│ ├── struts-tiles.tld
│ └── web.xml
├── 09
│ ├── build
│ │ └── classes
│ │ └── com
│ │ └── yxq
│ │ ├── action
│ │ │ ├── AdminAction.class
│ │ │ ├── BbsAction.class
│ │ │ ├── IndexAction.class
│ │ │ ├── LogXAction.class
│ │ │ ├── MySuperAction.class
│ │ │ ├── OwnAction.class
│ │ │ └── SearchAction.class
│ │ ├── actionform
│ │ │ ├── AbleForm.class
│ │ │ ├── BbsAnswerForm.class
│ │ │ ├── BbsForm.class
│ │ │ ├── BoardForm.class
│ │ │ ├── ClassForm.class
│ │ │ ├── JumpForm.class
│ │ │ ├── SearchForm.class
│ │ │ └── UserForm.class
│ │ ├── dao
│ │ │ ├── DB.class
│ │ │ └── OpDB.class
│ │ ├── filter
│ │ │ ├── AdminAccess.class
│ │ │ └── UserAccess.class
│ │ ├── Messages.properties
│ │ ├── model
│ │ │ └── CreatePage.class
│ │ └── tools
│ │ ├── Change.class
│ │ └── ToChinese.class
│ ├── Database
│ │ ├── db_luntan_Data.MDF
│ │ └── db_luntan_Log.LDF
│ ├── readme.doc
│ ├── src
│ │ └── com
│ │ └── yxq
│ │ ├── action
│ │ │ ├── AdminAction.java
│ │ │ ├── BbsAction.java
│ │ │ ├── IndexAction.java
│ │ │ ├── LogXAction.java
│ │ │ ├── MySuperAction.java
│ │ │ ├── OwnAction.java
│ │ │ └── SearchAction.java
│ │ ├── actionform
│ │ │ ├── AbleForm.java
│ │ │ ├── BbsAnswerForm.java
│ │ │ ├── BbsForm.java
│ │ │ ├── BoardForm.java
│ │ │ ├── ClassForm.java
│ │ │ ├── JumpForm.java
│ │ │ ├── SearchForm.java
│ │ │ └── UserForm.java
│ │ ├── dao
│ │ │ ├── DB.java
│ │ │ └── OpDB.java
│ │ ├── filter
│ │ │ ├── AdminAccess.java
│ │ │ └── UserAccess.java
│ │ ├── Messages.properties
│ │ ├── model
│ │ │ └── CreatePage.java
│ │ └── tools
│ │ ├── Change.java
│ │ └── ToChinese.java
│ └── WebContent
│ ├── css
│ │ └── style.css
│ ├── images
│ │ ├── admin
│ │ │ ├── adminB.jpg
│ │ │ ├── adminE.jpg
│ │ │ ├── adminEnd.jpg
│ │ │ ├── adminL.jpg
│ │ │ ├── adminLog.jpg
│ │ │ ├── back.jpg
│ │ │ ├── backLE.jpg
│ │ │ ├── backLT.jpg
│ │ │ ├── content.jpg
│ │ │ ├── menu.jpg
│ │ │ ├── menuT.jpg
│ │ │ ├── message.jpg
│ │ │ └── subMenu.jpg
│ │ ├── face
│ │ │ ├── bbs
│ │ │ │ ├── face0.gif
│ │ │ │ ├── face10.gif
│ │ │ │ ├── face11.gif
│ │ │ │ ├── face12.gif
│ │ │ │ ├── face13.gif
│ │ │ │ ├── face14.gif
│ │ │ │ ├── face15.gif
│ │ │ │ ├── face16.gif
│ │ │ │ ├── face17.gif
│ │ │ │ ├── face18.gif
│ │ │ │ ├── face19.gif
│ │ │ │ ├── face1.gif
│ │ │ │ ├── face20.gif
│ │ │ │ ├── face21.gif
│ │ │ │ ├── face22.gif
│ │ │ │ ├── face23.gif
│ │ │ │ ├── face24.gif
│ │ │ │ ├── face2.gif
│ │ │ │ ├── face3.gif
│ │ │ │ ├── face4.gif
│ │ │ │ ├── face5.gif
│ │ │ │ ├── face6.gif
│ │ │ │ ├── face7.gif
│ │ │ │ ├── face8.gif
│ │ │ │ └── face9.gif
│ │ │ └── user
│ │ │ ├── user0.gif
│ │ │ ├── user10.gif
│ │ │ ├── user11.gif
│ │ │ ├── user12.gif
│ │ │ ├── user13.gif
│ │ │ ├── user14.gif
│ │ │ ├── user15.gif
│ │ │ ├── user16.gif
│ │ │ ├── user17.gif
│ │ │ ├── user18.gif
│ │ │ ├── user19.gif
│ │ │ ├── user1.gif
│ │ │ ├── user20.gif
│ │ │ ├── user21.gif
│ │ │ ├── user22.gif
│ │ │ ├── user2.gif
│ │ │ ├── user3.gif
│ │ │ ├── user4.gif
│ │ │ ├── user5.gif
│ │ │ ├── user6.gif
│ │ │ ├── user7.gif
│ │ │ ├── user8.gif
│ │ │ └── user9.gif
│ │ ├── index
│ │ │ ├── bfn.gif
│ │ │ ├── boardE.jpg
│ │ │ ├── boardPic.jpg
│ │ │ ├── bs.jpg
│ │ │ ├── btitle.jpg
│ │ │ ├── classT.jpg
│ │ │ ├── end.jpg
│ │ │ ├── ifn.gif
│ │ │ ├── indexP.jpg
│ │ │ ├── indexPM.jpg
│ │ │ ├── indexS.jpg
│ │ │ ├── indexT.jpg
│ │ │ ├── master.jpg
│ │ │ ├── menu.jpg
│ │ │ ├── messages.jpg
│ │ │ ├── pcard.gif
│ │ │ └── ufn.gif
│ │ └── login
│ │ ├── brdown.gif
│ │ ├── brup.gif
│ │ ├── bsdown.gif
│ │ ├── bsup.gif
│ │ ├── loginB.jpg
│ │ ├── loginE.jpg
│ │ └── mess.gif
│ ├── index.jsp
│ ├── js
│ │ └── bbs.js
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── pages
│ │ ├── add
│ │ │ ├── bbsAdd.jsp
│ │ │ ├── count.jsp
│ │ │ ├── face.jsp
│ │ │ └── font.jsp
│ │ ├── admin
│ │ │ ├── board
│ │ │ │ ├── boardAdd.jsp
│ │ │ │ ├── boardListShow.jsp
│ │ │ │ └── boardModify.jsp
│ │ │ ├── class
│ │ │ │ ├── classAdd.jsp
│ │ │ │ ├── classListShow.jsp
│ │ │ │ └── classModify.jsp
│ │ │ ├── user
│ │ │ │ ├── userListShow.jsp
│ │ │ │ └── userModify.jsp
│ │ │ └── view
│ │ │ ├── adminTemp.jsp
│ │ │ ├── default.jsp
│ │ │ ├── end.jsp
│ │ │ ├── left.jsp
│ │ │ └── top.jsp
│ │ ├── login.jsp
│ │ ├── message.jsp
│ │ ├── page.jsp
│ │ ├── show
│ │ │ ├── bbs
│ │ │ │ ├── goodListShow.jsp
│ │ │ │ ├── listRootShow.jsp
│ │ │ │ ├── myBbsShow.jsp
│ │ │ │ ├── openRootShow.jsp
│ │ │ │ └── searchListShow.jsp
│ │ │ └── user
│ │ │ └── bbsUserSingle.jsp
│ │ └── userReg.jsp
│ ├── view
│ │ ├── default.jsp
│ │ ├── end.jsp
│ │ ├── indexTemp.jsp
│ │ ├── menu.jsp
│ │ └── top.jsp
│ └── WEB-INF
│ ├── classes
│ │ └── com
│ │ └── yxq
│ │ ├── action
│ │ │ ├── AdminAction.class
│ │ │ ├── BbsAction.class
│ │ │ ├── IndexAction.class
│ │ │ ├── LogXAction.class
│ │ │ ├── MySuperAction.class
│ │ │ ├── OwnAction.class
│ │ │ └── SearchAction.class
│ │ ├── actionform
│ │ │ ├── AbleForm.class
│ │ │ ├── BbsAnswerForm.class
│ │ │ ├── BbsForm.class
│ │ │ ├── BoardForm.class
│ │ │ ├── ClassForm.class
│ │ │ ├── JumpForm.class
│ │ │ ├── SearchForm.class
│ │ │ └── UserForm.class
│ │ ├── dao
│ │ │ ├── DB.class
│ │ │ └── OpDB.class
│ │ ├── filter
│ │ │ ├── AdminAccess.class
│ │ │ └── UserAccess.class
│ │ ├── Messages.properties
│ │ ├── model
│ │ │ └── CreatePage.class
│ │ └── tools
│ │ ├── Change.class
│ │ └── ToChinese.class
│ ├── lib
│ │ ├── antlr.jar
│ │ ├── commons-beanutils.jar
│ │ ├── commons-digester.jar
│ │ ├── commons-fileupload.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-validator.jar
│ │ ├── jakarta-oro.jar
│ │ ├── sqljdbc4.jar
│ │ └── struts.jar
│ ├── struts-config.xml
│ ├── tld
│ │ ├── struts-bean.tld
│ │ ├── struts-html.tld
│ │ ├── struts-logic.tld
│ │ ├── struts-nested.tld
│ │ └── struts-tiles.tld
│ ├── validation.xml
│ ├── validator-rules.xml
│ └── web.xml
└── 10
├── build
│ └── classes
│ └── com
│ ├── action
│ │ ├── ManagerAction.class
│ │ ├── SelfRequestProcessor.class
│ │ └── SongAction.class
│ ├── connDB.properties
│ ├── dao
│ │ ├── ManagerDAO.class
│ │ └── SongDAO.class
│ ├── model
│ │ ├── ManagerForm.class
│ │ ├── SongForm.class
│ │ └── SongTypeForm.class
│ ├── tools
│ │ ├── ConnDB.class
│ │ ├── MyPagination.class
│ │ └── StringUtils.class
│ └── yourcompany
│ └── struts
│ └── ApplicationResources.properties
├── Database
│ ├── db_onLineMusic_Data.MDF
│ └── db_onLineMusic_Log.LDF
├── readme.doc
├── src
│ └── com
│ ├── action
│ │ ├── ManagerAction.java
│ │ ├── SelfRequestProcessor.java
│ │ └── SongAction.java
│ ├── connDB.properties
│ ├── dao
│ │ ├── ManagerDAO.java
│ │ └── SongDAO.java
│ ├── model
│ │ ├── ManagerForm.java
│ │ ├── SongForm.java
│ │ └── SongTypeForm.java
│ ├── tools
│ │ ├── ConnDB.java
│ │ ├── MyPagination.java
│ │ └── StringUtils.java
│ └── yourcompany
│ └── struts
│ └── ApplicationResources.properties
└── WebContent
├── addok.jsp
├── adm_add.jsp
├── adm_copyright.jsp
├── adm_main.jsp
├── adm_search.jsp
├── checkMusic.jsp
├── continuePlay.jsp
├── copyright.jsp
├── CSS
│ └── style.css
├── delok.jsp
├── download.jsp
├── error.jsp
├── images
│ ├── ad.jpg
│ ├── btn_bg.gif
│ ├── main_title.jpg
│ ├── navigateion_oa.gif
│ ├── navigation_bg.gif
│ ├── newWindow_title.gif
│ ├── Thumbs.db
│ ├── title_ico.gif
│ ├── top_bg.jpg
│ ├── tryListen.bmp
│ ├── tryListen.gif
│ └── upFile_bg.gif
├── index.jsp
├── login.jsp
├── login_ok.jsp
├── logout.jsp
├── main.jsp
├── META-INF
│ └── MANIFEST.MF
├── navigation.jsp
├── newSongList.jsp
├── right.jsp
├── search.jsp
├── searchResult.jsp
├── songList.jsp
├── songSort.jsp
├── top.jsp
├── tryListen.jsp
├── upFile_deal.jsp
├── upFile.jsp
├── upLrcFile_deal.jsp
├── upLrcFile.jsp
└── WEB-INF
├── classes
│ └── com
│ ├── action
│ │ ├── ManagerAction.class
│ │ ├── SelfRequestProcessor.class
│ │ └── SongAction.class
│ ├── connDB.properties
│ ├── dao
│ │ ├── ManagerDAO.class
│ │ └── SongDAO.class
│ ├── model
│ │ ├── ManagerForm.class
│ │ ├── SongForm.class
│ │ └── SongTypeForm.class
│ ├── tools
│ │ ├── ConnDB.class
│ │ ├── MyPagination.class
│ │ └── StringUtils.class
│ └── yourcompany
│ └── struts
│ └── ApplicationResources.properties
├── lib
│ ├── antlr.jar
│ ├── commons-beanutils.jar
│ ├── commons-digester.jar
│ ├── commons-fileupload.jar
│ ├── commons-logging.jar
│ ├── commons-validator.jar
│ ├── jakarta-oro.jar
│ ├── jspSmartUpload.jar
│ ├── jstl.jar
│ ├── sqljdbc4.jar
│ ├── standard.jar
│ └── struts.jar
├── struts-bean.tld
├── struts-config.xml
├── struts-html.tld
├── struts-logic.tld
├── struts-nested.tld
├── struts-tiles.tld
├── validator-rules.xml
└── web.xml
369 directories, 1936 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论