在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → JavaWeb项目开发全程实录明日科技源码.rar

JavaWeb项目开发全程实录明日科技源码.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:171.05M
  • 下载次数:13
  • 浏览次数:139
  • 发布时间:2021-11-24
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
JavaWeb项目开发全程实录源码(明日科技著),2019年1月第一次印刷,10个完整开发项目(第一章:ITCLUB博客、第二章:甜橙音乐网……第十章:天下淘商城)
【实例截图】
【核心代码】
16359647517737757676.rar
└── 源码
└── TM
├── 01
│   ├── blogs
│   │   ├── build
│   │   │   └── classes
│   │   │   └── com
│   │   │   ├── dao
│   │   │   │   ├── ArticleDao.class
│   │   │   │   ├── ArtReviewDao.class
│   │   │   │   ├── FriendDao.class
│   │   │   │   ├── PhotoDao.class
│   │   │   │   ├── SuperDao.class
│   │   │   │   ├── UserDao.class
│   │   │   │   └── WordDao.class
│   │   │   ├── filter
│   │   │   │   ├── AllFilter.class
│   │   │   │   └── NeedLogonFilter.class
│   │   │   ├── servlet
│   │   │   │   ├── ArticleServlet.class
│   │   │   │   ├── ArtReviewServlet.class
│   │   │   │   ├── BlogContent.class
│   │   │   │   ├── BlogServlet.class
│   │   │   │   ├── BlogUserInfo.class
│   │   │   │   ├── FriendServlet.class
│   │   │   │   ├── IndexServlet.class
│   │   │   │   ├── LogOff.class
│   │   │   │   ├── MyLogon.class
│   │   │   │   ├── PhotoServlet.class
│   │   │   │   ├── UserLogon.class
│   │   │   │   ├── UserServlet.class
│   │   │   │   └── WordServlet.class
│   │   │   ├── toolsBean
│   │   │   │   ├── Change.class
│   │   │   │   ├── CreatePage.class
│   │   │   │   └── DB.class
│   │   │   └── valueBean
│   │   │   ├── ArticleSingle.class
│   │   │   ├── ArtReviewSingle.class
│   │   │   ├── PhotoSingle.class
│   │   │   ├── UserSingle.class
│   │   │   └── WordSingle.class
│   │   ├── src
│   │   │   └── com
│   │   │   ├── dao
│   │   │   │   ├── ArticleDao.java
│   │   │   │   ├── ArtReviewDao.java
│   │   │   │   ├── FriendDao.java
│   │   │   │   ├── PhotoDao.java
│   │   │   │   ├── SuperDao.java
│   │   │   │   ├── UserDao.java
│   │   │   │   └── WordDao.java
│   │   │   ├── filter
│   │   │   │   ├── AllFilter.java
│   │   │   │   └── NeedLogonFilter.java
│   │   │   ├── servlet
│   │   │   │   ├── ArticleServlet.java
│   │   │   │   ├── ArtReviewServlet.java
│   │   │   │   ├── BlogContent.java
│   │   │   │   ├── BlogServlet.java
│   │   │   │   ├── BlogUserInfo.java
│   │   │   │   ├── FriendServlet.java
│   │   │   │   ├── IndexServlet.java
│   │   │   │   ├── LogOff.java
│   │   │   │   ├── MyLogon.java
│   │   │   │   ├── PhotoServlet.java
│   │   │   │   ├── UserLogon.java
│   │   │   │   ├── UserServlet.java
│   │   │   │   └── WordServlet.java
│   │   │   ├── toolsBean
│   │   │   │   ├── Change.java
│   │   │   │   ├── CreatePage.java
│   │   │   │   └── DB.java
│   │   │   └── valueBean
│   │   │   ├── ArticleSingle.java
│   │   │   ├── ArtReviewSingle.java
│   │   │   ├── PhotoSingle.java
│   │   │   ├── UserSingle.java
│   │   │   └── WordSingle.java
│   │   └── WebContent
│   │   ├── commonUserHeader.jsp
│   │   ├── css
│   │   │   ├── base.css
│   │   │   ├── default.css
│   │   │   ├── index.css
│   │   │   ├── main.css
│   │   │   ├── mainGbk.css
│   │   │   ├── new.css
│   │   │   └── style.css
│   │   ├── images
│   │   │   ├── ad01.png
│   │   │   ├── ad02.png
│   │   │   ├── ad03.png
│   │   │   ├── ad04.png
│   │   │   ├── ad05.png
│   │   │   ├── banner2.png
│   │   │   ├── banner.png
│   │   │   ├── banner_top.jpg
│   │   │   ├── bg.jpg
│   │   │   ├── bg.png
│   │   │   ├── ewm.jpg
│   │   │   ├── ico
│   │   │   │   └── myNull.jpg
│   │   │   ├── logo2.png
│   │   │   ├── logo3.png
│   │   │   ├── logo.png
│   │   │   ├── photo
│   │   │   │   ├── flawer.jpg
│   │   │   │   ├── harvest.jpg
│   │   │   │   ├── leaf.jpg
│   │   │   │   ├── mr.png
│   │   │   │   ├── myNull.jpg
│   │   │   │   └── rabbit.png
│   │   │   └── photos2.jpg
│   │   ├── index.jsp
│   │   ├── indexUser.jsp
│   │   ├── js
│   │   │   ├── functionall.js
│   │   │   ├── home.js
│   │   │   ├── html5shiv.min.js
│   │   │   ├── index.js
│   │   │   ├── jBox
│   │   │   │   ├── i18n
│   │   │   │   │   └── jquery.jBox-zh-CN.js
│   │   │   │   ├── jquery-1.4.2.min.js
│   │   │   │   ├── jquery.jBox-2.3.min.js
│   │   │   │   ├── LGPL-LICENSE
│   │   │   │   ├── MIT-LICENSE
│   │   │   │   ├── Skins
│   │   │   │   │   ├── Blue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   ├── jbox-title-icon.gif
│   │   │   │   │   │   │   └── OneNote 目录.onetoc2
│   │   │   │   │   │   ├── jbox.css
│   │   │   │   │   │   └── OneNote 目录.onetoc2
│   │   │   │   │   ├── Brown
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Default
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Gray
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── GrayCool
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Green
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── GreyBlue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Purple
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Red
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareBlue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareBrown
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareGreen
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── SharePurple
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareRed
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   └── 样式说明(以Default皮肤为例).css
│   │   │   │   └── Skins2
│   │   │   │   ├── Blue
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Gray
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Green
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Pink
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Purple
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Yellow
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   └── 样式说明(以Green皮肤为例).css
│   │   │   ├── jquery.min-2.0.js
│   │   │   ├── jquery.min.js
│   │   │   ├── modernizr.js
│   │   │   ├── qtip.js
│   │   │   ├── respond.min.js
│   │   │   ├── silder.js
│   │   │   └── toolTip
│   │   │   ├── tooltip.css
│   │   │   └── tooltip.js
│   │   ├── messages.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── page.jsp
│   │   ├── regResult.jsp
│   │   ├── userArticleAdd.jsp
│   │   ├── userArticleEdit.jsp
│   │   ├── userDetail.jsp
│   │   ├── userFriend.jsp
│   │   ├── userImgDetail.jsp
│   │   ├── userImg.jsp
│   │   ├── userInfo.jsp
│   │   ├── userWord.jsp
│   │   └── WEB-INF
│   │   ├── classes
│   │   │   └── com
│   │   │   ├── dao
│   │   │   │   ├── ArticleDao.class
│   │   │   │   ├── ArtReviewDao.class
│   │   │   │   ├── FriendDao.class
│   │   │   │   ├── PhotoDao.class
│   │   │   │   ├── SuperDao.class
│   │   │   │   ├── UserDao.class
│   │   │   │   └── WordDao.class
│   │   │   ├── filter
│   │   │   │   ├── AllFilter.class
│   │   │   │   └── NeedLogonFilter.class
│   │   │   ├── servlet
│   │   │   │   ├── ArticleServlet.class
│   │   │   │   ├── ArtReviewServlet.class
│   │   │   │   ├── BlogContent.class
│   │   │   │   ├── BlogServlet.class
│   │   │   │   ├── BlogUserInfo.class
│   │   │   │   ├── FriendServlet.class
│   │   │   │   ├── IndexServlet.class
│   │   │   │   ├── LogOff.class
│   │   │   │   ├── MyLogon.class
│   │   │   │   ├── PhotoServlet.class
│   │   │   │   ├── UserLogon.class
│   │   │   │   ├── UserServlet.class
│   │   │   │   └── WordServlet.class
│   │   │   ├── toolsBean
│   │   │   │   ├── Change.class
│   │   │   │   ├── CreatePage.class
│   │   │   │   └── DB.class
│   │   │   └── valueBean
│   │   │   ├── ArticleSingle.class
│   │   │   ├── ArtReviewSingle.class
│   │   │   ├── PhotoSingle.class
│   │   │   ├── UserSingle.class
│   │   │   └── WordSingle.class
│   │   ├── lib
│   │   │   ├── jspsmart.jar
│   │   │   ├── jstl-1.2.jar
│   │   │   ├── sqljdbc4.jar
│   │   │   └── standard.jar
│   │   ├── web-origin.xml
│   │   └── web.xml
│   ├── Src
│   │   ├── 准备图片
│   │   │   └── building.jpg
│   │   ├── 博客文章模块
│   │   │   ├── commonUserHeader.jsp
│   │   │   ├── indexUser.jsp
│   │   │   └── page.jsp
│   │   ├── 登录模块
│   │   │   └── loginHtml.js
│   │   └── 首页模块
│   │   ├── com
│   │   │   ├── dao
│   │   │   │   └── SuperDao.java
│   │   │   ├── filter
│   │   │   │   ├── AllFilter.java
│   │   │   │   └── NeedLogonFilter.java
│   │   │   ├── servlet
│   │   │   ├── toolsBean
│   │   │   │   ├── Change.java
│   │   │   │   ├── CreatePage.java
│   │   │   │   └── DB.java
│   │   │   └── valueBean
│   │   │   ├── ArticleSingle.java
│   │   │   ├── ArtReviewSingle.java
│   │   │   ├── PhotoSingle.java
│   │   │   ├── UserSingle.java
│   │   │   └── WordSingle.java
│   │   ├── css
│   │   │   ├── base.css
│   │   │   ├── default.css
│   │   │   ├── index.css
│   │   │   ├── main.css
│   │   │   ├── mainGbk.css
│   │   │   ├── new.css
│   │   │   └── style.css
│   │   ├── images
│   │   │   ├── ad01.png
│   │   │   ├── ad02.png
│   │   │   ├── ad03.png
│   │   │   ├── ad04.png
│   │   │   ├── ad05.png
│   │   │   ├── banner2.png
│   │   │   ├── banner.png
│   │   │   ├── banner_top.jpg
│   │   │   ├── bg.jpg
│   │   │   ├── bg.png
│   │   │   ├── ewm.jpg
│   │   │   ├── ico
│   │   │   │   └── myNull.jpg
│   │   │   ├── logo2.png
│   │   │   ├── logo3.png
│   │   │   ├── logo.png
│   │   │   ├── photo
│   │   │   └── photos2.jpg
│   │   ├── index.jsp
│   │   ├── js
│   │   │   ├── functionall.js
│   │   │   ├── home.js
│   │   │   ├── html5shiv.min.js
│   │   │   ├── index.js
│   │   │   ├── jBox
│   │   │   │   ├── i18n
│   │   │   │   │   └── jquery.jBox-zh-CN.js
│   │   │   │   ├── jquery-1.4.2.min.js
│   │   │   │   ├── jquery.jBox-2.3.min.js
│   │   │   │   ├── LGPL-LICENSE
│   │   │   │   ├── MIT-LICENSE
│   │   │   │   ├── Skins
│   │   │   │   │   ├── Blue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   ├── jbox-title-icon.gif
│   │   │   │   │   │   │   └── OneNote 目录.onetoc2
│   │   │   │   │   │   ├── jbox.css
│   │   │   │   │   │   └── OneNote 目录.onetoc2
│   │   │   │   │   ├── Brown
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Default
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Gray
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── GrayCool
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Green
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── GreyBlue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Purple
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Red
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareBlue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareBrown
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareGreen
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── SharePurple
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareRed
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   └── 样式说明(以Default皮肤为例).css
│   │   │   │   └── Skins2
│   │   │   │   ├── Blue
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Gray
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Green
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Pink
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Purple
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Yellow
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   └── 样式说明(以Green皮肤为例).css
│   │   │   ├── jquery.min-2.0.js
│   │   │   ├── jquery.min.js
│   │   │   ├── modernizr.js
│   │   │   ├── qtip.js
│   │   │   ├── respond.min.js
│   │   │   ├── silder.js
│   │   │   └── toolTip
│   │   │   ├── tooltip.css
│   │   │   └── tooltip.js
│   │   └── WEB-INF
│   │   ├── lib
│   │   │   ├── jspsmart.jar
│   │   │   ├── jstl-1.2.jar
│   │   │   ├── sqljdbc4.jar
│   │   │   └── standard.jar
│   │   └── web.xml
│   └── 数据库
│   ├── db_mediaBlog_Data.mdf
│   └── db_mediaBlog_Log.ldf
├── 02
│   ├── musicnet
│   │   ├── build
│   │   │   └── classes
│   │   │   └── com
│   │   │   ├── connDB.properties
│   │   │   ├── dao
│   │   │   │   ├── ArtistDao.class
│   │   │   │   ├── ArtistDaoImpl.class
│   │   │   │   ├── MemberDao.class
│   │   │   │   ├── MemberDaoImpl.class
│   │   │   │   ├── SongDao.class
│   │   │   │   └── SongDaoImpl.class
│   │   │   ├── model
│   │   │   │   ├── Artist.class
│   │   │   │   ├── Member.class
│   │   │   │   └── Song.class
│   │   │   └── tools
│   │   │   ├── ChStr.class
│   │   │   └── ConnDB.class
│   │   ├── src
│   │   │   └── com
│   │   │   ├── connDB.properties
│   │   │   ├── dao
│   │   │   │   ├── ArtistDaoImpl.java
│   │   │   │   ├── ArtistDao.java
│   │   │   │   ├── MemberDaoImpl.java
│   │   │   │   ├── MemberDao.java
│   │   │   │   ├── SongDaoImpl.java
│   │   │   │   └── SongDao.java
│   │   │   ├── model
│   │   │   │   ├── Artist.java
│   │   │   │   ├── Member.java
│   │   │   │   └── Song.java
│   │   │   └── tools
│   │   │   ├── ChStr.java
│   │   │   └── ConnDB.java
│   │   └── WebContent
│   │   ├── addHit_deal.jsp
│   │   ├── addShow_deal.jsp
│   │   ├── admin-artistAdd_deal.jsp
│   │   ├── admin-artistAdd.jsp
│   │   ├── admin-artistDel_deal.jsp
│   │   ├── admin-artistEdit_deal.jsp
│   │   ├── admin-artistEdit.jsp
│   │   ├── admin-artist.jsp
│   │   ├── admin-modifyPs_deal.jsp
│   │   ├── admin-modifyPs.jsp
│   │   ├── admin-songAdd_deal.jsp
│   │   ├── admin-songAdd.jsp
│   │   ├── admin-songDel_deal.jsp
│   │   ├── admin-songEdit_deal.jsp
│   │   ├── admin-songEdit.jsp
│   │   ├── admin-song.jsp
│   │   ├── artistDetail.jsp
│   │   ├── artist.jsp
│   │   ├── common-foot.jsp
│   │   ├── common-nativ.jsp
│   │   ├── contentFrame.jsp
│   │   ├── css
│   │   │   ├── core.css
│   │   │   ├── jplayer.blue.monday.min.css
│   │   │   ├── pt_discover_index.css
│   │   │   ├── pt_frame.css
│   │   │   ├── pt_profile_home.css
│   │   │   └── pt_search_index.css
│   │   ├── dist
│   │   │   ├── add-on
│   │   │   │   ├── jplayer.playlist.js
│   │   │   │   ├── jplayer.playlist.min.js
│   │   │   │   ├── jquery.jplayer.inspector.js
│   │   │   │   └── jquery.jplayer.inspector.min.js
│   │   │   ├── jplayer
│   │   │   │   ├── jquery.jplayer.js
│   │   │   │   ├── jquery.jplayer.min.js
│   │   │   │   └── jquery.jplayer.swf
│   │   │   ├── popcorn
│   │   │   │   ├── popcorn.jplayer.js
│   │   │   │   └── popcorn.jplayer.min.js
│   │   │   └── skin
│   │   │   ├── blue.monday
│   │   │   │   ├── css
│   │   │   │   │   ├── jplayer.blue.monday.css
│   │   │   │   │   └── jplayer.blue.monday.min.css
│   │   │   │   ├── image
│   │   │   │   │   ├── jplayer.blue.monday.jpg
│   │   │   │   │   ├── jplayer.blue.monday.seeking.gif
│   │   │   │   │   └── jplayer.blue.monday.video.play.png
│   │   │   │   └── mustache
│   │   │   │   ├── jplayer.blue.monday.audio.playlist.html
│   │   │   │   ├── jplayer.blue.monday.audio.single.html
│   │   │   │   ├── jplayer.blue.monday.audio.stream.html
│   │   │   │   ├── jplayer.blue.monday.video.playlist.html
│   │   │   │   └── jplayer.blue.monday.video.single.html
│   │   │   └── pink.flag
│   │   │   ├── css
│   │   │   │   ├── jplayer.pink.flag.css
│   │   │   │   └── jplayer.pink.flag.min.css
│   │   │   ├── image
│   │   │   │   ├── jplayer.pink.flag.jpg
│   │   │   │   ├── jplayer.pink.flag.seeking.gif
│   │   │   │   └── jplayer.pink.flag.video.play.png
│   │   │   └── mustache
│   │   │   ├── jplayer.pink.flag.audio.playlist.html
│   │   │   ├── jplayer.pink.flag.audio.single.html
│   │   │   ├── jplayer.pink.flag.audio.stream.html
│   │   │   ├── jplayer.pink.flag.video.playlist.html
│   │   │   └── jplayer.pink.flag.video.single.html
│   │   ├── image
│   │   │   ├── bg.jpg
│   │   │   ├── bg-middle.png
│   │   │   ├── download1.png
│   │   │   ├── download.png
│   │   │   ├── jplayer.blue.monday.jpg
│   │   │   ├── login-leftBg.jpg
│   │   │   ├── login-rightBg.jpg
│   │   │   ├── logo.png
│   │   │   ├── out.png
│   │   │   ├── slder1_1.jpg
│   │   │   ├── slider1.jpg
│   │   │   ├── slider2_1.jpg
│   │   │   ├── slider2.jpg
│   │   │   └── slider3.jpg
│   │   ├── images
│   │   │   ├── artist
│   │   │   │   ├── 10.jpg
│   │   │   │   ├── 11.jpg
│   │   │   │   ├── 12.jpg
│   │   │   │   ├── 13.jpg
│   │   │   │   ├── 14.jpg
│   │   │   │   ├── 15.jpg
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3.jpg
│   │   │   │   ├── 4.jpg
│   │   │   │   ├── 5.jpg
│   │   │   │   ├── 6.jpg
│   │   │   │   ├── 7.jpg
│   │   │   │   ├── 8.jpg
│   │   │   │   └── 9.jpg
│   │   │   ├── banner1.png
│   │   │   ├── banner.png
│   │   │   ├── bg.jpg
│   │   │   ├── button2.png
│   │   │   ├── button.png
│   │   │   ├── download.png
│   │   │   ├── playbar.png
│   │   │   ├── search.png
│   │   │   ├── sltlyr.png
│   │   │   ├── song
│   │   │   │   └── 53.mp3
│   │   │   ├── statbar.png
│   │   │   ├── table.png
│   │   │   ├── tab.png
│   │   │   ├── test.jpg
│   │   │   ├── topbar01.png
│   │   │   ├── topbar02.png
│   │   │   └── topbar.png
│   │   ├── index.jsp
│   │   ├── js
│   │   │   ├── core.js
│   │   │   ├── jBox
│   │   │   │   ├── i18n
│   │   │   │   │   └── jquery.jBox-zh-CN.js
│   │   │   │   ├── jquery-1.4.2.min.js
│   │   │   │   ├── jquery.jBox-2.3.min.js
│   │   │   │   ├── LGPL-LICENSE
│   │   │   │   ├── MIT-LICENSE
│   │   │   │   ├── Skins
│   │   │   │   │   ├── Blue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   ├── jbox-title-icon.gif
│   │   │   │   │   │   │   └── OneNote 目录.onetoc2
│   │   │   │   │   │   ├── jbox.css
│   │   │   │   │   │   └── OneNote 目录.onetoc2
│   │   │   │   │   ├── Brown
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Default
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Gray
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── GrayCool
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Green
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── GreyBlue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Purple
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Red
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareBlue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareBrown
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareGreen
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── SharePurple
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareRed
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   └── 样式说明(以Default皮肤为例).css
│   │   │   │   └── Skins2
│   │   │   │   ├── Blue
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Gray
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Green
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Pink
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Purple
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Yellow
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   └── 样式说明(以Green皮肤为例).css
│   │   │   ├── jquery.1.3.2.js
│   │   │   ├── jquery.jplayer.min.js
│   │   │   ├── jquery.min.js
│   │   │   ├── pt_discover_index.js
│   │   │   └── toolTip
│   │   │   ├── out.png
│   │   │   ├── tooltip.css
│   │   │   └── tooltip.js
│   │   ├── login_check.jsp
│   │   ├── logout.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── myMusicList.jsp
│   │   ├── playList.jsp
│   │   ├── register_deal.jsp
│   │   ├── search.jsp
│   │   ├── topList.jsp
│   │   └── WEB-INF
│   │   ├── classes
│   │   │   └── com
│   │   │   ├── connDB.properties
│   │   │   ├── dao
│   │   │   │   ├── ArtistDao.class
│   │   │   │   ├── ArtistDaoImpl.class
│   │   │   │   ├── MemberDao.class
│   │   │   │   ├── MemberDaoImpl.class
│   │   │   │   ├── SongDao.class
│   │   │   │   └── SongDaoImpl.class
│   │   │   ├── model
│   │   │   │   ├── Artist.class
│   │   │   │   ├── Member.class
│   │   │   │   └── Song.class
│   │   │   └── tools
│   │   │   ├── ChStr.class
│   │   │   └── ConnDB.class
│   │   ├── lib
│   │   │   └── sqljdbc4.jar
│   │   └── web.xml
│   ├── Src
│   │   ├── 发现音乐模块
│   │   │   └── search.jsp
│   │   ├── 排行榜模块
│   │   │   └── topList.jsp
│   │   ├── 曲风模块
│   │   │   └── playList.jsp
│   │   ├── 歌手模块
│   │   │   ├── artistDetail.jsp
│   │   │   └── artist.jsp
│   │   └── 首页模块
│   │   ├── java工具包
│   │   │   └── com
│   │   │   ├── connDB.properties
│   │   │   └── tools
│   │   │   ├── ChStr.java
│   │   │   └── ConnDB.java
│   │   └── 前台资源
│   │   ├── common-nativ.jsp
│   │   ├── contentFrame.jsp
│   │   ├── css
│   │   │   ├── core.css
│   │   │   ├── jplayer.blue.monday.min.css
│   │   │   ├── pt_discover_index.css
│   │   │   ├── pt_frame.css
│   │   │   ├── pt_profile_home.css
│   │   │   └── pt_search_index.css
│   │   ├── dist
│   │   │   ├── add-on
│   │   │   │   ├── jplayer.playlist.js
│   │   │   │   ├── jplayer.playlist.min.js
│   │   │   │   ├── jquery.jplayer.inspector.js
│   │   │   │   └── jquery.jplayer.inspector.min.js
│   │   │   ├── jplayer
│   │   │   │   ├── jquery.jplayer.js
│   │   │   │   ├── jquery.jplayer.min.js
│   │   │   │   └── jquery.jplayer.swf
│   │   │   ├── popcorn
│   │   │   │   ├── popcorn.jplayer.js
│   │   │   │   └── popcorn.jplayer.min.js
│   │   │   └── skin
│   │   │   ├── blue.monday
│   │   │   │   ├── css
│   │   │   │   │   ├── jplayer.blue.monday.css
│   │   │   │   │   └── jplayer.blue.monday.min.css
│   │   │   │   ├── image
│   │   │   │   │   ├── jplayer.blue.monday.jpg
│   │   │   │   │   ├── jplayer.blue.monday.seeking.gif
│   │   │   │   │   └── jplayer.blue.monday.video.play.png
│   │   │   │   └── mustache
│   │   │   │   ├── jplayer.blue.monday.audio.playlist.html
│   │   │   │   ├── jplayer.blue.monday.audio.single.html
│   │   │   │   ├── jplayer.blue.monday.audio.stream.html
│   │   │   │   ├── jplayer.blue.monday.video.playlist.html
│   │   │   │   └── jplayer.blue.monday.video.single.html
│   │   │   └── pink.flag
│   │   │   ├── css
│   │   │   │   ├── jplayer.pink.flag.css
│   │   │   │   └── jplayer.pink.flag.min.css
│   │   │   ├── image
│   │   │   │   ├── jplayer.pink.flag.jpg
│   │   │   │   ├── jplayer.pink.flag.seeking.gif
│   │   │   │   └── jplayer.pink.flag.video.play.png
│   │   │   └── mustache
│   │   │   ├── jplayer.pink.flag.audio.playlist.html
│   │   │   ├── jplayer.pink.flag.audio.single.html
│   │   │   ├── jplayer.pink.flag.audio.stream.html
│   │   │   ├── jplayer.pink.flag.video.playlist.html
│   │   │   └── jplayer.pink.flag.video.single.html
│   │   ├── image
│   │   │   ├── bg.jpg
│   │   │   ├── bg-middle.png
│   │   │   ├── download1.png
│   │   │   ├── download.png
│   │   │   ├── jplayer.blue.monday.jpg
│   │   │   ├── login-leftBg.jpg
│   │   │   ├── login-rightBg.jpg
│   │   │   ├── logo.png
│   │   │   ├── out.png
│   │   │   ├── slder1_1.jpg
│   │   │   ├── slider1.jpg
│   │   │   ├── slider2_1.jpg
│   │   │   ├── slider2.jpg
│   │   │   └── slider3.jpg
│   │   ├── images
│   │   │   ├── artist
│   │   │   │   ├── 10.jpg
│   │   │   │   ├── 11.jpg
│   │   │   │   ├── 12.jpg
│   │   │   │   ├── 13.jpg
│   │   │   │   ├── 14.jpg
│   │   │   │   ├── 15.jpg
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3.jpg
│   │   │   │   ├── 4.jpg
│   │   │   │   ├── 5.jpg
│   │   │   │   ├── 6.jpg
│   │   │   │   ├── 7.jpg
│   │   │   │   ├── 8.jpg
│   │   │   │   └── 9.jpg
│   │   │   ├── banner1.png
│   │   │   ├── banner.png
│   │   │   ├── bg.jpg
│   │   │   ├── button2.png
│   │   │   ├── button.png
│   │   │   ├── download.png
│   │   │   ├── playbar.png
│   │   │   ├── search.png
│   │   │   ├── sltlyr.png
│   │   │   ├── song
│   │   │   │   └── 53.mp3
│   │   │   ├── statbar.png
│   │   │   ├── table.png
│   │   │   ├── tab.png
│   │   │   ├── test.jpg
│   │   │   ├── topbar01.png
│   │   │   ├── topbar02.png
│   │   │   └── topbar.png
│   │   ├── index.jsp
│   │   ├── js
│   │   │   ├── core.js
│   │   │   ├── jBox
│   │   │   │   ├── i18n
│   │   │   │   │   └── jquery.jBox-zh-CN.js
│   │   │   │   ├── jquery-1.4.2.min.js
│   │   │   │   ├── jquery.jBox-2.3.min.js
│   │   │   │   ├── LGPL-LICENSE
│   │   │   │   ├── MIT-LICENSE
│   │   │   │   ├── Skins
│   │   │   │   │   ├── Blue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   ├── jbox-title-icon.gif
│   │   │   │   │   │   │   └── OneNote 目录.onetoc2
│   │   │   │   │   │   ├── jbox.css
│   │   │   │   │   │   └── OneNote 目录.onetoc2
│   │   │   │   │   ├── Brown
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Default
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Gray
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── GrayCool
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Green
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── GreyBlue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Purple
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── Red
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareBlue
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareBrown
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareGreen
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── SharePurple
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   ├── ShareRed
│   │   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── jbox-button1.png
│   │   │   │   │   │   │   ├── jbox-button2.png
│   │   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   │   └── jbox.css
│   │   │   │   │   └── 样式说明(以Default皮肤为例).css
│   │   │   │   └── Skins2
│   │   │   │   ├── Blue
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Gray
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Green
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Pink
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Purple
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   ├── Yellow
│   │   │   │   │   ├── Desktop.ini
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jbox-close1.gif
│   │   │   │   │   │   ├── jbox-close2.gif
│   │   │   │   │   │   ├── jbox-content-loading.gif
│   │   │   │   │   │   ├── jbox-icons-ie6.gif
│   │   │   │   │   │   ├── jbox-icons.png
│   │   │   │   │   │   ├── jbox-loading1.gif
│   │   │   │   │   │   ├── jbox-loading2.gif
│   │   │   │   │   │   ├── jbox-loading3.gif
│   │   │   │   │   │   └── jbox-title-icon.gif
│   │   │   │   │   └── jbox.css
│   │   │   │   └── 样式说明(以Green皮肤为例).css
│   │   │   ├── jquery.1.3.2.js
│   │   │   ├── jquery.jplayer.min.js
│   │   │   ├── jquery.min.js
│   │   │   ├── pt_discover_index.js
│   │   │   └── toolTip
│   │   │   ├── out.png
│   │   │   ├── tooltip.css
│   │   │   └── tooltip.js
│   │   └── WEB-INF
│   │   ├── classes
│   │   │   └── com
│   │   │   ├── connDB.properties
│   │   │   ├── dao
│   │   │   │   ├── ArtistDao.class
│   │   │   │   ├── ArtistDaoImpl.class
│   │   │   │   ├── MemberDao.class
│   │   │   │   ├── MemberDaoImpl.class
│   │   │   │   ├── SongDao.class
│   │   │   │   └── SongDaoImpl.class
│   │   │   ├── model
│   │   │   │   ├── Artist.class
│   │   │   │   ├── Member.class
│   │   │   │   └── Song.class
│   │   │   └── tools
│   │   │   ├── ChStr.class
│   │   │   └── ConnDB.class
│   │   ├── lib
│   │   │   └── sqljdbc4.jar
│   │   └── web.xml
│   └── 数据库
│   ├── db_onLineMusic_Data.MDF
│   └── db_onLineMusic_Log.LDF
├── 03
│   ├── mrbbs
│   │   ├── build
│   │   │   └── classes
│   │   │   ├── com
│   │   │   │   └── mrkj
│   │   │   │   └── ygl
│   │   │   │   ├── component
│   │   │   │   │   └── ForumComponent.class
│   │   │   │   ├── config
│   │   │   │   │   ├── mapping
│   │   │   │   │   │   ├── DictionaryMapper.xml
│   │   │   │   │   │   ├── forumInfoMapper.xml
│   │   │   │   │   │   ├── forumMainMapper.xml
│   │   │   │   │   │   ├── forumSecondMapper.xml
│   │   │   │   │   │   ├── Sys_loginMapper.xml
│   │   │   │   │   │   ├── Sys_permissionMapper.xml
│   │   │   │   │   │   ├── Sys_permissionTreeMapper.xml
│   │   │   │   │   │   ├── Sys_roleMapper.xml
│   │   │   │   │   │   ├── Sys_role_permissionMapper.xml
│   │   │   │   │   │   ├── Sys_user_infoMapper.xml
│   │   │   │   │   │   └── UserloginMapper.xml
│   │   │   │   │   ├── RootConfig.class
│   │   │   │   │   ├── spring-pz-shiro.xml
│   │   │   │   │   ├── spring-transaction.xml
│   │   │   │   │   ├── SpringWebInitializer.class
│   │   │   │   │   └── WebConfig.class
│   │   │   │   ├── controller
│   │   │   │   │   ├── MainPageController.class
│   │   │   │   │   ├── MyFirstController.class
│   │   │   │   │   ├── SecondPageController.class
│   │   │   │   │   ├── Test02Controller.class
│   │   │   │   │   └── ue
│   │   │   │   │   └── UEditorController.class
│   │   │   │   ├── dao
│   │   │   │   │   ├── forum
│   │   │   │   │   │   ├── forumInfoMapper.class
│   │   │   │   │   │   ├── forumMainMapper.class
│   │   │   │   │   │   └── forumSecondMapper.class
│   │   │   │   │   ├── role
│   │   │   │   │   │   ├── Sys_loginMapper.class
│   │   │   │   │   │   ├── Sys_permissionMapper.class
│   │   │   │   │   │   ├── Sys_permissionTreeMapper.class
│   │   │   │   │   │   ├── Sys_roleMapper.class
│   │   │   │   │   │   ├── Sys_role_permissionMapper.class
│   │   │   │   │   │   ├── Sys_user_infoMapper.class
│   │   │   │   │   │   └── UserloginMapper.class
│   │   │   │   │   └── sys
│   │   │   │   │   └── DictionaryMapper.class
│   │   │   │   ├── entity
│   │   │   │   │   ├── forum
│   │   │   │   │   │   ├── forumInfo.class
│   │   │   │   │   │   ├── forumMain.class
│   │   │   │   │   │   └── forumSecond.class
│   │   │   │   │   ├── login
│   │   │   │   │   │   ├── Sys_login.class
│   │   │   │   │   │   ├── Sys_user_info.class
│   │   │   │   │   │   ├── Userlogin.class
│   │   │   │   │   │   └── UserloginKey.class
│   │   │   │   │   ├── role
│   │   │   │   │   │   ├── Sys_permission.class
│   │   │   │   │   │   ├── Sys_permissionTree.class
│   │   │   │   │   │   ├── Sys_role.class
│   │   │   │   │   │   ├── Sys_role_permission.class
│   │   │   │   │   │   └── Sys_roleTree.class
│   │   │   │   │   └── sys
│   │   │   │   │   └── Dictionary.class
│   │   │   │   ├── filter
│   │   │   │   │   └── LoginFilter.class
│   │   │   │   ├── listener
│   │   │   │   │   └── SessionListenerBySeachLogin.class
│   │   │   │   ├── service
│   │   │   │   │   ├── forum
│   │   │   │   │   │   └── impl
│   │   │   │   │   │   └── ForumServiceImpl.class
│   │   │   │   │   ├── login
│   │   │   │   │   │   ├── impl
│   │   │   │   │   │   │   ├── Sys_loginServiceImpl.class
│   │   │   │   │   │   │   └── UserloginServiceImpl.class
│   │   │   │   │   │   ├── Sys_loginService.class
│   │   │   │   │   │   └── UserloginService.class
│   │   │   │   │   ├── MainPageService.class
│   │   │   │   │   ├── role
│   │   │   │   │   │   ├── impl
│   │   │   │   │   │   │   ├── Sys_permissionServiceImpl.class
│   │   │   │   │   │   │   ├── Sys_permissionTreeServiceImpl.class
│   │   │   │   │   │   │   ├── Sys_role_permissionServiceImpl.class
│   │   │   │   │   │   │   └── Sys_roleServiceImpl.class
│   │   │   │   │   │   ├── Sys_permissionService.class
│   │   │   │   │   │   ├── Sys_permissionTreeService.class
│   │   │   │   │   │   ├── Sys_role_permissionService.class
│   │   │   │   │   │   └── Sys_roleService.class
│   │   │   │   │   ├── SecondPageService.class
│   │   │   │   │   └── sys
│   │   │   │   │   ├── DictionaryService.class
│   │   │   │   │   └── impl
│   │   │   │   │   └── DictonaryServiceImpl.class
│   │   │   │   ├── standard
│   │   │   │   │   └── Util.class
│   │   │   │   ├── util
│   │   │   │   │   ├── CCommon.class
│   │   │   │   │   ├── CStringUtil.class
│   │   │   │   │   ├── DateUtil.class
│   │   │   │   │   ├── DICTIONARIES_properties.class
│   │   │   │   │   ├── FileDownload.class
│   │   │   │   │   ├── FileUpdata.class
│   │   │   │   │   ├── FileUpload.class
│   │   │   │   │   ├── FileUtil.class
│   │   │   │   │   ├── FileZip.class
│   │   │   │   │   ├── Freemarker.class
│   │   │   │   │   ├── GetPinyin.class
│   │   │   │   │   ├── Logger.class
│   │   │   │   │   ├── MapDistance.class
│   │   │   │   │   ├── MD5.class
│   │   │   │   │   ├── ObjectExcelRead.class
│   │   │   │   │   ├── ObjectExcelView.class
│   │   │   │   │   ├── PublicUtil.class
│   │   │   │   │   ├── ReflectHelper.class
│   │   │   │   │   ├── Result.class
│   │   │   │   │   ├── SystemContext.class
│   │   │   │   │   ├── Tools.class
│   │   │   │   │   └── UuidUtil.class
│   │   │   │   ├── utils
│   │   │   │   │   ├── CacheUtils.class
│   │   │   │   │   ├── Encodes.class
│   │   │   │   │   ├── FileUtils.class
│   │   │   │   │   ├── SendMailUtil.class
│   │   │   │   │   ├── SpringContextHolder.class
│   │   │   │   │   ├── StringUtils.class
│   │   │   │   │   ├── ValidataUtil.class
│   │   │   │   │   └── VerifyCodeUtil.class
│   │   │   │   └── web
│   │   │   │   ├── forum
│   │   │   │   │   ├── MainController.class
│   │   │   │   │   └── SecondController.class
│   │   │   │   ├── index
│   │   │   │   │   └── IndexController.class
│   │   │   │   ├── Sys_permissionController.class
│   │   │   │   ├── Sys_roleController.class
│   │   │   │   └── UserLogin.class
│   │   │   ├── forum.properties
│   │   │   └── jdbc.properties
│   │   ├── myresource
│   │   │   └── com
│   │   │   └── mrkj
│   │   │   └── ygl
│   │   │   ├── controller
│   │   │   │   ├── MainPageController.java
│   │   │   │   ├── MyFirstController.java
│   │   │   │   ├── SecondPageController.java
│   │   │   │   └── Test02Controller.java
│   │   │   └── service
│   │   │   ├── MainPageService.java
│   │   │   └── SecondPageService.java
│   │   ├── resource
│   │   │   ├── com
│   │   │   │   └── mrkj
│   │   │   │   └── ygl
│   │   │   │   └── config
│   │   │   │   ├── mapping
│   │   │   │   │   ├── DictionaryMapper.xml
│   │   │   │   │   ├── forumInfoMapper.xml
│   │   │   │   │   ├── forumMainMapper.xml
│   │   │   │   │   ├── forumSecondMapper.xml
│   │   │   │   │   ├── Sys_loginMapper.xml
│   │   │   │   │   ├── Sys_permissionMapper.xml
│   │   │   │   │   ├── Sys_permissionTreeMapper.xml
│   │   │   │   │   ├── Sys_roleMapper.xml
│   │   │   │   │   ├── Sys_role_permissionMapper.xml
│   │   │   │   │   ├── Sys_user_infoMapper.xml
│   │   │   │   │   └── UserloginMapper.xml
│   │   │   │   ├── RootConfig.java
│   │   │   │   ├── spring-pz-shiro.xml
│   │   │   │   ├── spring-transaction.xml
│   │   │   │   ├── SpringWebInitializer.java
│   │   │   │   └── WebConfig.java
│   │   │   ├── forum.properties
│   │   │   └── jdbc.properties
│   │   ├── src
│   │   │   └── com
│   │   │   └── mrkj
│   │   │   └── ygl
│   │   │   ├── component
│   │   │   │   └── ForumComponent.java
│   │   │   ├── controller
│   │   │   │   └── ue
│   │   │   │   └── UEditorController.java
│   │   │   ├── dao
│   │   │   │   ├── forum
│   │   │   │   │   ├── forumInfoMapper.java
│   │   │   │   │   ├── forumMainMapper.java
│   │   │   │   │   └── forumSecondMapper.java
│   │   │   │   ├── role
│   │   │   │   │   ├── Sys_loginMapper.java
│   │   │   │   │   ├── Sys_permissionMapper.java
│   │   │   │   │   ├── Sys_permissionTreeMapper.java
│   │   │   │   │   ├── Sys_roleMapper.java
│   │   │   │   │   ├── Sys_role_permissionMapper.java
│   │   │   │   │   ├── Sys_user_infoMapper.java
│   │   │   │   │   └── UserloginMapper.java
│   │   │   │   └── sys
│   │   │   │   └── DictionaryMapper.java
│   │   │   ├── entity
│   │   │   │   ├── forum
│   │   │   │   │   ├── forumInfo.java
│   │   │   │   │   ├── forumMain.java
│   │   │   │   │   └── forumSecond.java
│   │   │   │   ├── login
│   │   │   │   │   ├── Sys_login.java
│   │   │   │   │   ├── Sys_user_info.java
│   │   │   │   │   ├── Userlogin.java
│   │   │   │   │   └── UserloginKey.java
│   │   │   │   ├── role
│   │   │   │   │   ├── Sys_permission.java
│   │   │   │   │   ├── Sys_permissionTree.java
│   │   │   │   │   ├── Sys_role.java
│   │   │   │   │   ├── Sys_role_permission.java
│   │   │   │   │   └── Sys_roleTree.java
│   │   │   │   └── sys
│   │   │   │   └── Dictionary.java
│   │   │   ├── filter
│   │   │   │   └── LoginFilter.java
│   │   │   ├── listener
│   │   │   │   └── SessionListenerBySeachLogin.java
│   │   │   ├── service
│   │   │   │   ├── forum
│   │   │   │   │   └── impl
│   │   │   │   │   └── ForumServiceImpl.java
│   │   │   │   ├── login
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── Sys_loginServiceImpl.java
│   │   │   │   │   │   └── UserloginServiceImpl.java
│   │   │   │   │   ├── Sys_loginService.java
│   │   │   │   │   └── UserloginService.java
│   │   │   │   ├── role
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── Sys_permissionServiceImpl.java
│   │   │   │   │   │   ├── Sys_permissionTreeServiceImpl.java
│   │   │   │   │   │   ├── Sys_role_permissionServiceImpl.java
│   │   │   │   │   │   └── Sys_roleServiceImpl.java
│   │   │   │   │   ├── Sys_permissionService.java
│   │   │   │   │   ├── Sys_permissionTreeService.java
│   │   │   │   │   ├── Sys_role_permissionService.java
│   │   │   │   │   └── Sys_roleService.java
│   │   │   │   └── sys
│   │   │   │   ├── DictionaryService.java
│   │   │   │   └── impl
│   │   │   │   └── DictonaryServiceImpl.java
│   │   │   ├── standard
│   │   │   │   └── Util.java
│   │   │   ├── util
│   │   │   │   ├── CCommon.java
│   │   │   │   ├── CStringUtil.java
│   │   │   │   ├── DateUtil.java
│   │   │   │   ├── DICTIONARIES_properties.java
│   │   │   │   ├── FileDownload.java
│   │   │   │   ├── FileUpdata.java
│   │   │   │   ├── FileUpload.java
│   │   │   │   ├── FileUtil.java
│   │   │   │   ├── FileZip.java
│   │   │   │   ├── Freemarker.java
│   │   │   │   ├── GetPinyin.java
│   │   │   │   ├── Logger.java
│   │   │   │   ├── MapDistance.java
│   │   │   │   ├── MD5.java
│   │   │   │   ├── ObjectExcelRead.java
│   │   │   │   ├── ObjectExcelView.java
│   │   │   │   ├── PublicUtil.java
│   │   │   │   ├── ReflectHelper.java
│   │   │   │   ├── Result.java
│   │   │   │   ├── SystemContext.java
│   │   │   │   ├── Tools.java
│   │   │   │   └── UuidUtil.java
│   │   │   ├── utils
│   │   │   │   ├── CacheUtils.java
│   │   │   │   ├── Encodes.java
│   │   │   │   ├── FileUtils.java
│   │   │   │   ├── SendMailUtil.java
│   │   │   │   ├── SpringContextHolder.java
│   │   │   │   ├── StringUtils.java
│   │   │   │   ├── ValidataUtil.java
│   │   │   │   └── VerifyCodeUtil.java
│   │   │   └── web
│   │   │   ├── forum
│   │   │   │   ├── MainController.java
│   │   │   │   └── SecondController.java
│   │   │   ├── index
│   │   │   │   └── IndexController.java
│   │   │   ├── Sys_permissionController.java
│   │   │   ├── Sys_roleController.java
│   │   │   └── UserLogin.java
│   │   └── WebContent
│   │   ├── 0database
│   │   │   └── mrbbs.sql
│   │   ├── bootstrap-3.3.5-dist
│   │   │   ├── css
│   │   │   │   ├── blog.css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.css.map
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-theme.css
│   │   │   │   ├── bootstrap-theme.css.map
│   │   │   │   └── bootstrap-theme.min.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   └── js
│   │   │   ├── bootstrap.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── jquery-1.11.3.min.js
│   │   │   └── npm.js
│   │   ├── css
│   │   │   ├── autocomplete.css
│   │   │   ├── bdsstyle.css
│   │   │   ├── forum.css
│   │   │   ├── ityks.css
│   │   │   ├── mod-dz-1.css
│   │   │   ├── prestige.css
│   │   │   ├── style_6_common.css
│   │   │   ├── style_6_forum_index.css
│   │   │   └── style_6_widthauto.css
│   │   ├── image
│   │   │   ├── avatar_002.gif
│   │   │   ├── banner_01.png
│   │   │   ├── banner_02.png
│   │   │   ├── collapsed_no.gif
│   │   │   ├── folder_lock.gif
│   │   │   ├── folder_new.gif
│   │   │   ├── ico_000.gif
│   │   │   ├── ico_111.gif
│   │   │   ├── language_andriod.png
│   │   │   ├── language_c.png
│   │   │   ├── language_css.png
│   │   │   ├── language_java.png
│   │   │   ├── language_jsp.png
│   │   │   ├── language_mysql.png
│   │   │   ├── language_net.png
│   │   │   ├── language_oracle.png
│   │   │   ├── language_other2.png
│   │   │   ├── language_other.png
│   │   │   ├── language_php.png
│   │   │   ├── language_python.png
│   │   │   ├── language_sqlsever.png
│   │   │   ├── language_web.png
│   │   │   ├── loginBack.png
│   │   │   ├── pin_1.gif
│   │   │   └── ziye.png
│   │   ├── index.jsp
│   │   ├── js
│   │   │   ├── index.js
│   │   │   └── login.js
│   │   ├── jspHead.jsp
│   │   ├── login.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── secondImage
│   │   │   ├── language_length10.png
│   │   │   ├── language_length11.png
│   │   │   ├── language_length12.png
│   │   │   ├── language_length13.png
│   │   │   ├── language_length14.png
│   │   │   ├── language_length15.png
│   │   │   ├── language_length16.png
│   │   │   ├── language_length1.png
│   │   │   ├── language_length2.png
│   │   │   ├── language_length3.png
│   │   │   ├── language_length4.png
│   │   │   ├── language_length5.png
│   │   │   ├── language_length6.png
│   │   │   ├── language_length7.png
│   │   │   ├── language_length8.png
│   │   │   └── language_length9.png
│   │   ├── uedit
│   │   │   └── js
│   │   │   ├── dialogs
│   │   │   │   ├── anchor
│   │   │   │   │   └── anchor.html
│   │   │   │   ├── attachment
│   │   │   │   │   ├── attachment.css
│   │   │   │   │   ├── attachment.html
│   │   │   │   │   ├── attachment.js
│   │   │   │   │   ├── fileTypeImages
│   │   │   │   │   │   ├── icon_chm.gif
│   │   │   │   │   │   ├── icon_default.png
│   │   │   │   │   │   ├── icon_doc.gif
│   │   │   │   │   │   ├── icon_exe.gif
│   │   │   │   │   │   ├── icon_jpg.gif
│   │   │   │   │   │   ├── icon_mp3.gif
│   │   │   │   │   │   ├── icon_mv.gif
│   │   │   │   │   │   ├── icon_pdf.gif
│   │   │   │   │   │   ├── icon_ppt.gif
│   │   │   │   │   │   ├── icon_psd.gif
│   │   │   │   │   │   ├── icon_rar.gif
│   │   │   │   │   │   ├── icon_txt.gif
│   │   │   │   │   │   └── icon_xls.gif
│   │   │   │   │   └── images
│   │   │   │   │   ├── alignicon.gif
│   │   │   │   │   ├── alignicon.png
│   │   │   │   │   ├── bg.png
│   │   │   │   │   ├── file-icons.gif
│   │   │   │   │   ├── file-icons.png
│   │   │   │   │   ├── icons.gif
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── image.png
│   │   │   │   │   ├── progress.png
│   │   │   │   │   ├── success.gif
│   │   │   │   │   └── success.png
│   │   │   │   ├── background
│   │   │   │   │   ├── background.css
│   │   │   │   │   ├── background.html
│   │   │   │   │   ├── background.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── bg.png
│   │   │   │   │   └── success.png
│   │   │   │   ├── charts
│   │   │   │   │   ├── chart.config.js
│   │   │   │   │   ├── charts.css
│   │   │   │   │   ├── charts.html
│   │   │   │   │   ├── charts.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── charts0.png
│   │   │   │   │   ├── charts1.png
│   │   │   │   │   ├── charts2.png
│   │   │   │   │   ├── charts3.png
│   │   │   │   │   ├── charts4.png
│   │   │   │   │   └── charts5.png
│   │   │   │   ├── emotion
│   │   │   │   │   ├── emotion.css
│   │   │   │   │   ├── emotion.html
│   │   │   │   │   ├── emotion.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── 0.gif
│   │   │   │   │   ├── bface.gif
│   │   │   │   │   ├── cface.gif
│   │   │   │   │   ├── fface.gif
│   │   │   │   │   ├── jxface2.gif
│   │   │   │   │   ├── neweditor-tab-bg.png
│   │   │   │   │   ├── tface.gif
│   │   │   │   │   ├── wface.gif
│   │   │   │   │   └── yface.gif
│   │   │   │   ├── gmap
│   │   │   │   │   └── gmap.html
│   │   │   │   ├── help
│   │   │   │   │   ├── help.css
│   │   │   │   │   ├── help.html
│   │   │   │   │   └── help.js
│   │   │   │   ├── image
│   │   │   │   │   ├── image.css
│   │   │   │   │   ├── image.html
│   │   │   │   │   ├── image.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── alignicon.jpg
│   │   │   │   │   ├── bg.png
│   │   │   │   │   ├── icons.gif
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── image.png
│   │   │   │   │   ├── progress.png
│   │   │   │   │   ├── success.gif
│   │   │   │   │   └── success.png
│   │   │   │   ├── insertframe
│   │   │   │   │   └── insertframe.html
│   │   │   │   ├── internal.js
│   │   │   │   ├── link
│   │   │   │   │   └── link.html
│   │   │   │   ├── map
│   │   │   │   │   ├── map.html
│   │   │   │   │   └── show.html
│   │   │   │   ├── music
│   │   │   │   │   ├── music.css
│   │   │   │   │   ├── music.html
│   │   │   │   │   └── music.js
│   │   │   │   ├── preview
│   │   │   │   │   └── preview.html
│   │   │   │   ├── scrawl
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── addimg.png
│   │   │   │   │   │   ├── brush.png
│   │   │   │   │   │   ├── delimgH.png
│   │   │   │   │   │   ├── delimg.png
│   │   │   │   │   │   ├── emptyH.png
│   │   │   │   │   │   ├── empty.png
│   │   │   │   │   │   ├── eraser.png
│   │   │   │   │   │   ├── redoH.png
│   │   │   │   │   │   ├── redo.png
│   │   │   │   │   │   ├── scaleH.png
│   │   │   │   │   │   ├── scale.png
│   │   │   │   │   │   ├── size.png
│   │   │   │   │   │   ├── undoH.png
│   │   │   │   │   │   └── undo.png
│   │   │   │   │   ├── scrawl.css
│   │   │   │   │   ├── scrawl.html
│   │   │   │   │   └── scrawl.js
│   │   │   │   ├── searchreplace
│   │   │   │   │   ├── searchreplace.html
│   │   │   │   │   └── searchreplace.js
│   │   │   │   ├── snapscreen
│   │   │   │   │   └── snapscreen.html
│   │   │   │   ├── spechars
│   │   │   │   │   ├── spechars.html
│   │   │   │   │   └── spechars.js
│   │   │   │   ├── table
│   │   │   │   │   ├── dragicon.png
│   │   │   │   │   ├── edittable.css
│   │   │   │   │   ├── edittable.html
│   │   │   │   │   ├── edittable.js
│   │   │   │   │   ├── edittd.html
│   │   │   │   │   └── edittip.html
│   │   │   │   ├── template
│   │   │   │   │   ├── config.js
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── bg.gif
│   │   │   │   │   │   ├── pre0.png
│   │   │   │   │   │   ├── pre1.png
│   │   │   │   │   │   ├── pre2.png
│   │   │   │   │   │   ├── pre3.png
│   │   │   │   │   │   └── pre4.png
│   │   │   │   │   ├── template.css
│   │   │   │   │   ├── template.html
│   │   │   │   │   └── template.js
│   │   │   │   ├── video
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── bg.png
│   │   │   │   │   │   ├── center_focus.jpg
│   │   │   │   │   │   ├── file-icons.gif
│   │   │   │   │   │   ├── file-icons.png
│   │   │   │   │   │   ├── icons.gif
│   │   │   │   │   │   ├── icons.png
│   │   │   │   │   │   ├── image.png
│   │   │   │   │   │   ├── left_focus.jpg
│   │   │   │   │   │   ├── none_focus.jpg
│   │   │   │   │   │   ├── progress.png
│   │   │   │   │   │   ├── right_focus.jpg
│   │   │   │   │   │   ├── success.gif
│   │   │   │   │   │   └── success.png
│   │   │   │   │   ├── video.css
│   │   │   │   │   ├── video.html
│   │   │   │   │   └── video.js
│   │   │   │   ├── webapp
│   │   │   │   │   └── webapp.html
│   │   │   │   └── wordimage
│   │   │   │   ├── fClipboard_ueditor.swf
│   │   │   │   ├── imageUploader.swf
│   │   │   │   ├── tangram.js
│   │   │   │   ├── wordimage.html
│   │   │   │   └── wordimage.js
│   │   │   ├── jsp
│   │   │   │   ├── config.json
│   │   │   │   └── controller.jsp
│   │   │   ├── lang
│   │   │   │   ├── en
│   │   │   │   │   ├── en.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── addimage.png
│   │   │   │   │   ├── alldeletebtnhoverskin.png
│   │   │   │   │   ├── alldeletebtnupskin.png
│   │   │   │   │   ├── background.png
│   │   │   │   │   ├── button.png
│   │   │   │   │   ├── copy.png
│   │   │   │   │   ├── deletedisable.png
│   │   │   │   │   ├── deleteenable.png
│   │   │   │   │   ├── listbackground.png
│   │   │   │   │   ├── localimage.png
│   │   │   │   │   ├── music.png
│   │   │   │   │   ├── rotateleftdisable.png
│   │   │   │   │   ├── rotateleftenable.png
│   │   │   │   │   ├── rotaterightdisable.png
│   │   │   │   │   ├── rotaterightenable.png
│   │   │   │   │   └── upload.png
│   │   │   │   └── zh-cn
│   │   │   │   ├── images
│   │   │   │   │   ├── copy.png
│   │   │   │   │   ├── localimage.png
│   │   │   │   │   ├── music.png
│   │   │   │   │   └── upload.png
│   │   │   │   └── zh-cn.js
│   │   │   ├── themes
│   │   │   │   ├── default
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── ueditor.css
│   │   │   │   │   │   └── ueditor.min.css
│   │   │   │   │   ├── dialogbase.css
│   │   │   │   │   └── images
│   │   │   │   │   ├── anchor.gif
│   │   │   │   │   ├── arrow_down.png
│   │   │   │   │   ├── arrow.png
│   │   │   │   │   ├── arrow_up.png
│   │   │   │   │   ├── button-bg.gif
│   │   │   │   │   ├── cancelbutton.gif
│   │   │   │   │   ├── charts.png
│   │   │   │   │   ├── cursor_h.gif
│   │   │   │   │   ├── cursor_h.png
│   │   │   │   │   ├── cursor_v.gif
│   │   │   │   │   ├── cursor_v.png
│   │   │   │   │   ├── dialog-title-bg.png
│   │   │   │   │   ├── filescan.png
│   │   │   │   │   ├── highlighted.gif
│   │   │   │   │   ├── icons-all.gif
│   │   │   │   │   ├── icons.gif
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── loaderror.png
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── lock.gif
│   │   │   │   │   ├── neweditor-tab-bg.png
│   │   │   │   │   ├── pagebreak.gif
│   │   │   │   │   ├── scale.png
│   │   │   │   │   ├── sortable.png
│   │   │   │   │   ├── spacer.gif
│   │   │   │   │   ├── sparator_v.png
│   │   │   │   │   ├── table-cell-align.png
│   │   │   │   │   ├── tangram-colorpicker.png
│   │   │   │   │   ├── toolbar_bg.png
│   │   │   │   │   ├── unhighlighted.gif
│   │   │   │   │   ├── upload.png
│   │   │   │   │   ├── videologo.gif
│   │   │   │   │   ├── word.gif
│   │   │   │   │   └── wordpaste.png
│   │   │   │   └── iframe.css
│   │   │   ├── third-party
│   │   │   │   ├── codemirror
│   │   │   │   │   ├── codemirror.css
│   │   │   │   │   └── codemirror.js
│   │   │   │   ├── highcharts
│   │   │   │   │   ├── adapters
│   │   │   │   │   │   ├── mootools-adapter.js
│   │   │   │   │   │   ├── mootools-adapter.src.js
│   │   │   │   │   │   ├── prototype-adapter.js
│   │   │   │   │   │   ├── prototype-adapter.src.js
│   │   │   │   │   │   ├── standalone-framework.js
│   │   │   │   │   │   └── standalone-framework.src.js
│   │   │   │   │   ├── highcharts.js
│   │   │   │   │   ├── highcharts-more.js
│   │   │   │   │   ├── highcharts-more.src.js
│   │   │   │   │   ├── highcharts.src.js
│   │   │   │   │   ├── modules
│   │   │   │   │   │   ├── annotations.js
│   │   │   │   │   │   ├── annotations.src.js
│   │   │   │   │   │   ├── canvas-tools.js
│   │   │   │   │   │   ├── canvas-tools.src.js
│   │   │   │   │   │   ├── data.js
│   │   │   │   │   │   ├── data.src.js
│   │   │   │   │   │   ├── drilldown.js
│   │   │   │   │   │   ├── drilldown.src.js
│   │   │   │   │   │   ├── exporting.js
│   │   │   │   │   │   ├── exporting.src.js
│   │   │   │   │   │   ├── funnel.js
│   │   │   │   │   │   ├── funnel.src.js
│   │   │   │   │   │   ├── heatmap.js
│   │   │   │   │   │   ├── heatmap.src.js
│   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   ├── map.src.js
│   │   │   │   │   │   ├── no-data-to-display.js
│   │   │   │   │   │   └── no-data-to-display.src.js
│   │   │   │   │   └── themes
│   │   │   │   │   ├── dark-blue.js
│   │   │   │   │   ├── dark-green.js
│   │   │   │   │   ├── gray.js
│   │   │   │   │   ├── grid.js
│   │   │   │   │   └── skies.js
│   │   │   │   ├── jquery-1.10.2.js
│   │   │   │   ├── jquery-1.10.2.min.js
│   │   │   │   ├── jquery-1.10.2.min.map
│   │   │   │   ├── snapscreen
│   │   │   │   │   └── UEditorSnapscreen.exe
│   │   │   │   ├── SyntaxHighlighter
│   │   │   │   │   ├── shCoreDefault.css
│   │   │   │   │   └── shCore.js
│   │   │   │   ├── video-js
│   │   │   │   │   ├── font
│   │   │   │   │   │   ├── vjs.eot
│   │   │   │   │   │   ├── vjs.svg
│   │   │   │   │   │   ├── vjs.ttf
│   │   │   │   │   │   └── vjs.woff
│   │   │   │   │   ├── video.dev.js
│   │   │   │   │   ├── video.js
│   │   │   │   │   ├── video-js.css
│   │   │   │   │   ├── video-js.min.css
│   │   │   │   │   └── video-js.swf
│   │   │   │   ├── webuploader
│   │   │   │   │   ├── Uploader.swf
│   │   │   │   │   ├── webuploader.css
│   │   │   │   │   ├── webuploader.custom.js
│   │   │   │   │   ├── webuploader.custom.min.js
│   │   │   │   │   ├── webuploader.flashonly.js
│   │   │   │   │   ├── webuploader.flashonly.min.js
│   │   │   │   │   ├── webuploader.html5only.js
│   │   │   │   │   ├── webuploader.html5only.min.js
│   │   │   │   │   ├── webuploader.js
│   │   │   │   │   ├── webuploader.min.js
│   │   │   │   │   ├── webuploader.withoutimage.js
│   │   │   │   │   └── webuploader.withoutimage.min.js
│   │   │   │   ├── xss.min.js
│   │   │   │   └── zeroclipboard
│   │   │   │   ├── ZeroClipboard.js
│   │   │   │   ├── ZeroClipboard.min.js
│   │   │   │   └── ZeroClipboard.swf
│   │   │   ├── ueditor.all.js
│   │   │   ├── ueditor.all.min.js
│   │   │   ├── ueditor.config.js
│   │   │   ├── ueditor.parse.js
│   │   │   └── ueditor.parse.min.js
│   │   └── WEB-INF
│   │   ├── lib
│   │   │   ├── activation-1.1.1.jar
│   │   │   ├── ant-1.8.2.jar
│   │   │   ├── ant-launcher-1.8.2.jar
│   │   │   ├── aopalliance-1.0.jar
│   │   │   ├── asm-1.5.3.jar
│   │   │   ├── aspectjrt-1.6.11.jar
│   │   │   ├── aspectjweaver-1.6.11.jar
│   │   │   ├── cas-client-core-3.2.1.jar
│   │   │   ├── cglib-2.1_3.jar
│   │   │   ├── classmate-1.0.0.jar
│   │   │   ├── commons-beanutils-1.8.3.jar
│   │   │   ├── commons-codec-1.9.jar
│   │   │   ├── commons-dbcp-1.2.2.jar
│   │   │   ├── commons-email-1.4.jar
│   │   │   ├── commons-fileupload-1.3.1.jar
│   │   │   ├── commons-io-2.4.jar
│   │   │   ├── commons-lang3-3.3.2.jar
│   │   │   ├── commons-logging-1.2.jar
│   │   │   ├── commons-pool-1.3.jar
│   │   │   ├── druid-1.0.18.jar
│   │   │   ├── ehcache-core-2.5.0.jar
│   │   │   ├── fastjson-1.1.41.jar
│   │   │   ├── freemarker-2.3.22.jar
│   │   │   ├── guava-17.0.jar
│   │   │   ├── hibernate-validator-5.1.3.Final.jar
│   │   │   ├── jackson-annotations-2.7.3.jar
│   │   │   ├── jackson-core-2.7.3.jar
│   │   │   ├── jackson-core-asl-1.9.13.jar
│   │   │   ├── jackson-databind-2.7.3.jar
│   │   │   ├── jackson-mapper-asl-1.9.13.jar
│   │   │   ├── javax.mail-1.5.2.jar
│   │   │   ├── jboss-logging-3.1.3.GA.jar
│   │   │   ├── jcl-over-slf4j-1.7.13.jar
│   │   │   ├── joda-time-2.9.1.jar
│   │   │   ├── json.jar
│   │   │   ├── jstl-1.2.jar
│   │   │   ├── log4j-1.2.17.jar
│   │   │   ├── mybatis-3.2.6.jar
│   │   │   ├── mybatis-spring-1.2.2.jar
│   │   │   ├── mysql-connector-java-5.1.30.jar
│   │   │   ├── pinyin4j-2.5.0.jar
│   │   │   ├── poi-3.7.jar
│   │   │   ├── shiro-cas-1.2.3.jar
│   │   │   ├── shiro-core-1.2.3.jar
│   │   │   ├── shiro-ehcache-1.2.3.jar
│   │   │   ├── shiro-spring-1.2.3.jar
│   │   │   ├── shiro-web-1.2.3.jar
│   │   │   ├── slf4j-api-1.7.7.jar
│   │   │   ├── slf4j-log4j12-1.7.7.jar
│   │   │   ├── spring-aop-4.2.4.RELEASE.jar
│   │   │   ├── spring-aspects-4.2.4.RELEASE.jar
│   │   │   ├── spring-beans-4.2.4.RELEASE.jar
│   │   │   ├── spring-context-4.2.4.RELEASE.jar
│   │   │   ├── spring-context-support-4.2.4.RELEASE.jar
│   │   │   ├── spring-core-4.2.4.RELEASE.jar
│   │   │   ├── spring-expression-4.2.4.RELEASE.jar
│   │   │   ├── spring-jdbc-4.2.4.RELEASE.jar
│   │   │   ├── spring-messaging-4.2.4.RELEASE.jar
│   │   │   ├── spring-oxm-4.2.4.RELEASE.jar
│   │   │   ├── spring-security-acl-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-aspects-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-config-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-core-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-taglibs-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-test-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-web-4.0.4.RELEASE.jar
│   │   │   ├── spring-test-4.2.4.RELEASE.jar
│   │   │   ├── spring-tx-4.2.4.RELEASE.jar
│   │   │   ├── spring-web-4.2.4.RELEASE.jar
│   │   │   ├── spring-webmvc-4.2.4.RELEASE.jar
│   │   │   ├── spring-websocket-4.2.4.RELEASE.jar
│   │   │   ├── ueditor-1.1.2.jar
│   │   │   └── validation-api-1.1.0.Final.jar
│   │   ├── menu.jsp
│   │   ├── sys
│   │   │   ├── peradd.jsp
│   │   │   ├── peredit.jsp
│   │   │   ├── per.jsp
│   │   │   ├── roleadd.jsp
│   │   │   ├── roleedit.jsp
│   │   │   ├── role.jsp
│   │   │   ├── role_per.jsp
│   │   │   └── user.jsp
│   │   ├── view
│   │   │   ├── index.jsp
│   │   │   ├── jinghua.jsp
│   │   │   ├── mainContent.jsp
│   │   │   ├── myJSP
│   │   │   │   ├── mainPage.jsp
│   │   │   │   ├── secondPage.jsp
│   │   │   │   ├── test01.jsp
│   │   │   │   ├── test02.jsp
│   │   │   │   └── test03.jsp
│   │   │   └── secondContent.jsp
│   │   └── web.xml
│   ├── Src
│   │   ├── resource
│   │   │   ├── com
│   │   │   │   └── mrkj
│   │   │   │   └── ygl
│   │   │   │   └── config
│   │   │   │   ├── mapping
│   │   │   │   │   ├── DictionaryMapper.xml
│   │   │   │   │   ├── forumInfoMapper.xml
│   │   │   │   │   ├── forumMainMapper.xml
│   │   │   │   │   ├── forumSecondMapper.xml
│   │   │   │   │   ├── Sys_loginMapper.xml
│   │   │   │   │   ├── Sys_permissionMapper.xml
│   │   │   │   │   ├── Sys_permissionTreeMapper.xml
│   │   │   │   │   ├── Sys_roleMapper.xml
│   │   │   │   │   ├── Sys_role_permissionMapper.xml
│   │   │   │   │   ├── Sys_user_infoMapper.xml
│   │   │   │   │   └── UserloginMapper.xml
│   │   │   │   ├── RootConfig.java
│   │   │   │   ├── spring-pz-shiro.xml
│   │   │   │   ├── spring-transaction.xml
│   │   │   │   ├── SpringWebInitializer.java
│   │   │   │   └── WebConfig.java
│   │   │   ├── forum.properties
│   │   │   └── jdbc.properties
│   │   ├── src
│   │   │   └── com
│   │   │   └── mrkj
│   │   │   └── ygl
│   │   │   ├── component
│   │   │   │   └── ForumComponent.java
│   │   │   ├── controller
│   │   │   │   └── ue
│   │   │   │   └── UEditorController.java
│   │   │   ├── dao
│   │   │   │   ├── forum
│   │   │   │   │   ├── forumInfoMapper.java
│   │   │   │   │   ├── forumMainMapper.java
│   │   │   │   │   └── forumSecondMapper.java
│   │   │   │   ├── role
│   │   │   │   │   ├── Sys_loginMapper.java
│   │   │   │   │   ├── Sys_permissionMapper.java
│   │   │   │   │   ├── Sys_permissionTreeMapper.java
│   │   │   │   │   ├── Sys_roleMapper.java
│   │   │   │   │   ├── Sys_role_permissionMapper.java
│   │   │   │   │   ├── Sys_user_infoMapper.java
│   │   │   │   │   └── UserloginMapper.java
│   │   │   │   └── sys
│   │   │   │   └── DictionaryMapper.java
│   │   │   ├── entity
│   │   │   │   ├── forum
│   │   │   │   │   ├── forumInfo.java
│   │   │   │   │   ├── forumMain.java
│   │   │   │   │   └── forumSecond.java
│   │   │   │   ├── login
│   │   │   │   │   ├── Sys_login.java
│   │   │   │   │   ├── Sys_user_info.java
│   │   │   │   │   ├── Userlogin.java
│   │   │   │   │   └── UserloginKey.java
│   │   │   │   ├── role
│   │   │   │   │   ├── Sys_permission.java
│   │   │   │   │   ├── Sys_permissionTree.java
│   │   │   │   │   ├── Sys_role.java
│   │   │   │   │   ├── Sys_role_permission.java
│   │   │   │   │   └── Sys_roleTree.java
│   │   │   │   └── sys
│   │   │   │   └── Dictionary.java
│   │   │   ├── filter
│   │   │   │   └── LoginFilter.java
│   │   │   ├── listener
│   │   │   │   └── SessionListenerBySeachLogin.java
│   │   │   ├── service
│   │   │   │   ├── forum
│   │   │   │   │   └── impl
│   │   │   │   │   └── ForumServiceImpl.java
│   │   │   │   ├── login
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── Sys_loginServiceImpl.java
│   │   │   │   │   │   └── UserloginServiceImpl.java
│   │   │   │   │   ├── Sys_loginService.java
│   │   │   │   │   └── UserloginService.java
│   │   │   │   ├── role
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── Sys_permissionServiceImpl.java
│   │   │   │   │   │   ├── Sys_permissionTreeServiceImpl.java
│   │   │   │   │   │   ├── Sys_role_permissionServiceImpl.java
│   │   │   │   │   │   └── Sys_roleServiceImpl.java
│   │   │   │   │   ├── Sys_permissionService.java
│   │   │   │   │   ├── Sys_permissionTreeService.java
│   │   │   │   │   ├── Sys_role_permissionService.java
│   │   │   │   │   └── Sys_roleService.java
│   │   │   │   └── sys
│   │   │   │   ├── DictionaryService.java
│   │   │   │   └── impl
│   │   │   │   └── DictonaryServiceImpl.java
│   │   │   ├── standard
│   │   │   │   └── Util.java
│   │   │   ├── util
│   │   │   │   ├── CCommon.java
│   │   │   │   ├── CStringUtil.java
│   │   │   │   ├── DateUtil.java
│   │   │   │   ├── DICTIONARIES_properties.java
│   │   │   │   ├── FileDownload.java
│   │   │   │   ├── FileUpdata.java
│   │   │   │   ├── FileUpload.java
│   │   │   │   ├── FileUtil.java
│   │   │   │   ├── FileZip.java
│   │   │   │   ├── Freemarker.java
│   │   │   │   ├── GetPinyin.java
│   │   │   │   ├── Logger.java
│   │   │   │   ├── MapDistance.java
│   │   │   │   ├── MD5.java
│   │   │   │   ├── ObjectExcelRead.java
│   │   │   │   ├── ObjectExcelView.java
│   │   │   │   ├── PublicUtil.java
│   │   │   │   ├── ReflectHelper.java
│   │   │   │   ├── Result.java
│   │   │   │   ├── SystemContext.java
│   │   │   │   ├── Tools.java
│   │   │   │   └── UuidUtil.java
│   │   │   ├── utils
│   │   │   │   ├── CacheUtils.java
│   │   │   │   ├── Encodes.java
│   │   │   │   ├── FileUtils.java
│   │   │   │   ├── SendMailUtil.java
│   │   │   │   ├── SpringContextHolder.java
│   │   │   │   ├── StringUtils.java
│   │   │   │   ├── ValidataUtil.java
│   │   │   │   └── VerifyCodeUtil.java
│   │   │   └── web
│   │   │   ├── forum
│   │   │   │   ├── MainController.java
│   │   │   │   └── SecondController.java
│   │   │   ├── index
│   │   │   │   └── IndexController.java
│   │   │   ├── Sys_permissionController.java
│   │   │   ├── Sys_roleController.java
│   │   │   └── UserLogin.java
│   │   └── WebContent
│   │   ├── 0database
│   │   │   └── mrbbs.sql
│   │   ├── bootstrap-3.3.5-dist
│   │   │   ├── css
│   │   │   │   ├── blog.css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.css.map
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-theme.css
│   │   │   │   ├── bootstrap-theme.css.map
│   │   │   │   └── bootstrap-theme.min.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   └── js
│   │   │   ├── bootstrap.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── jquery-1.11.3.min.js
│   │   │   └── npm.js
│   │   ├── css
│   │   │   ├── autocomplete.css
│   │   │   ├── bdsstyle.css
│   │   │   ├── forum.css
│   │   │   ├── ityks.css
│   │   │   ├── mod-dz-1.css
│   │   │   ├── prestige.css
│   │   │   ├── style_6_common.css
│   │   │   ├── style_6_forum_index.css
│   │   │   └── style_6_widthauto.css
│   │   ├── image
│   │   │   ├── avatar_002.gif
│   │   │   ├── banner_01.png
│   │   │   ├── banner_02.png
│   │   │   ├── collapsed_no.gif
│   │   │   ├── folder_lock.gif
│   │   │   ├── folder_new.gif
│   │   │   ├── ico_000.gif
│   │   │   ├── language_andriod.png
│   │   │   ├── language_c.png
│   │   │   ├── language_css.png
│   │   │   ├── language_java.png
│   │   │   ├── language_jsp.png
│   │   │   ├── language_mysql.png
│   │   │   ├── language_net.png
│   │   │   ├── language_oracle.png
│   │   │   ├── language_other2.png
│   │   │   ├── language_other.png
│   │   │   ├── language_php.png
│   │   │   ├── language_python.png
│   │   │   ├── language_sqlsever.png
│   │   │   ├── language_web.png
│   │   │   ├── loginBack.png
│   │   │   ├── pin_1.gif
│   │   │   └── ziye.png
│   │   ├── index.jsp
│   │   ├── js
│   │   │   ├── index.js
│   │   │   └── login.js
│   │   ├── jspHead.jsp
│   │   ├── login.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── secondImage
│   │   │   ├── language_length10.png
│   │   │   ├── language_length11.png
│   │   │   ├── language_length12.png
│   │   │   ├── language_length13.png
│   │   │   ├── language_length14.png
│   │   │   ├── language_length15.png
│   │   │   ├── language_length16.png
│   │   │   ├── language_length1.png
│   │   │   ├── language_length2.png
│   │   │   ├── language_length3.png
│   │   │   ├── language_length4.png
│   │   │   ├── language_length5.png
│   │   │   ├── language_length6.png
│   │   │   ├── language_length7.png
│   │   │   ├── language_length8.png
│   │   │   └── language_length9.png
│   │   ├── uedit
│   │   │   └── js
│   │   │   ├── dialogs
│   │   │   │   ├── anchor
│   │   │   │   │   └── anchor.html
│   │   │   │   ├── attachment
│   │   │   │   │   ├── attachment.css
│   │   │   │   │   ├── attachment.html
│   │   │   │   │   ├── attachment.js
│   │   │   │   │   ├── fileTypeImages
│   │   │   │   │   │   ├── icon_chm.gif
│   │   │   │   │   │   ├── icon_default.png
│   │   │   │   │   │   ├── icon_doc.gif
│   │   │   │   │   │   ├── icon_exe.gif
│   │   │   │   │   │   ├── icon_jpg.gif
│   │   │   │   │   │   ├── icon_mp3.gif
│   │   │   │   │   │   ├── icon_mv.gif
│   │   │   │   │   │   ├── icon_pdf.gif
│   │   │   │   │   │   ├── icon_ppt.gif
│   │   │   │   │   │   ├── icon_psd.gif
│   │   │   │   │   │   ├── icon_rar.gif
│   │   │   │   │   │   ├── icon_txt.gif
│   │   │   │   │   │   └── icon_xls.gif
│   │   │   │   │   └── images
│   │   │   │   │   ├── alignicon.gif
│   │   │   │   │   ├── alignicon.png
│   │   │   │   │   ├── bg.png
│   │   │   │   │   ├── file-icons.gif
│   │   │   │   │   ├── file-icons.png
│   │   │   │   │   ├── icons.gif
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── image.png
│   │   │   │   │   ├── progress.png
│   │   │   │   │   ├── success.gif
│   │   │   │   │   └── success.png
│   │   │   │   ├── background
│   │   │   │   │   ├── background.css
│   │   │   │   │   ├── background.html
│   │   │   │   │   ├── background.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── bg.png
│   │   │   │   │   └── success.png
│   │   │   │   ├── charts
│   │   │   │   │   ├── chart.config.js
│   │   │   │   │   ├── charts.css
│   │   │   │   │   ├── charts.html
│   │   │   │   │   ├── charts.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── charts0.png
│   │   │   │   │   ├── charts1.png
│   │   │   │   │   ├── charts2.png
│   │   │   │   │   ├── charts3.png
│   │   │   │   │   ├── charts4.png
│   │   │   │   │   └── charts5.png
│   │   │   │   ├── emotion
│   │   │   │   │   ├── emotion.css
│   │   │   │   │   ├── emotion.html
│   │   │   │   │   ├── emotion.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── 0.gif
│   │   │   │   │   ├── bface.gif
│   │   │   │   │   ├── cface.gif
│   │   │   │   │   ├── fface.gif
│   │   │   │   │   ├── jxface2.gif
│   │   │   │   │   ├── neweditor-tab-bg.png
│   │   │   │   │   ├── tface.gif
│   │   │   │   │   ├── wface.gif
│   │   │   │   │   └── yface.gif
│   │   │   │   ├── gmap
│   │   │   │   │   └── gmap.html
│   │   │   │   ├── help
│   │   │   │   │   ├── help.css
│   │   │   │   │   ├── help.html
│   │   │   │   │   └── help.js
│   │   │   │   ├── image
│   │   │   │   │   ├── image.css
│   │   │   │   │   ├── image.html
│   │   │   │   │   ├── image.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── alignicon.jpg
│   │   │   │   │   ├── bg.png
│   │   │   │   │   ├── icons.gif
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── image.png
│   │   │   │   │   ├── progress.png
│   │   │   │   │   ├── success.gif
│   │   │   │   │   └── success.png
│   │   │   │   ├── insertframe
│   │   │   │   │   └── insertframe.html
│   │   │   │   ├── internal.js
│   │   │   │   ├── link
│   │   │   │   │   └── link.html
│   │   │   │   ├── map
│   │   │   │   │   ├── map.html
│   │   │   │   │   └── show.html
│   │   │   │   ├── music
│   │   │   │   │   ├── music.css
│   │   │   │   │   ├── music.html
│   │   │   │   │   └── music.js
│   │   │   │   ├── preview
│   │   │   │   │   └── preview.html
│   │   │   │   ├── scrawl
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── addimg.png
│   │   │   │   │   │   ├── brush.png
│   │   │   │   │   │   ├── delimgH.png
│   │   │   │   │   │   ├── delimg.png
│   │   │   │   │   │   ├── emptyH.png
│   │   │   │   │   │   ├── empty.png
│   │   │   │   │   │   ├── eraser.png
│   │   │   │   │   │   ├── redoH.png
│   │   │   │   │   │   ├── redo.png
│   │   │   │   │   │   ├── scaleH.png
│   │   │   │   │   │   ├── scale.png
│   │   │   │   │   │   ├── size.png
│   │   │   │   │   │   ├── undoH.png
│   │   │   │   │   │   └── undo.png
│   │   │   │   │   ├── scrawl.css
│   │   │   │   │   ├── scrawl.html
│   │   │   │   │   └── scrawl.js
│   │   │   │   ├── searchreplace
│   │   │   │   │   ├── searchreplace.html
│   │   │   │   │   └── searchreplace.js
│   │   │   │   ├── snapscreen
│   │   │   │   │   └── snapscreen.html
│   │   │   │   ├── spechars
│   │   │   │   │   ├── spechars.html
│   │   │   │   │   └── spechars.js
│   │   │   │   ├── table
│   │   │   │   │   ├── dragicon.png
│   │   │   │   │   ├── edittable.css
│   │   │   │   │   ├── edittable.html
│   │   │   │   │   ├── edittable.js
│   │   │   │   │   ├── edittd.html
│   │   │   │   │   └── edittip.html
│   │   │   │   ├── template
│   │   │   │   │   ├── config.js
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── bg.gif
│   │   │   │   │   │   ├── pre0.png
│   │   │   │   │   │   ├── pre1.png
│   │   │   │   │   │   ├── pre2.png
│   │   │   │   │   │   ├── pre3.png
│   │   │   │   │   │   └── pre4.png
│   │   │   │   │   ├── template.css
│   │   │   │   │   ├── template.html
│   │   │   │   │   └── template.js
│   │   │   │   ├── video
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── bg.png
│   │   │   │   │   │   ├── center_focus.jpg
│   │   │   │   │   │   ├── file-icons.gif
│   │   │   │   │   │   ├── file-icons.png
│   │   │   │   │   │   ├── icons.gif
│   │   │   │   │   │   ├── icons.png
│   │   │   │   │   │   ├── image.png
│   │   │   │   │   │   ├── left_focus.jpg
│   │   │   │   │   │   ├── none_focus.jpg
│   │   │   │   │   │   ├── progress.png
│   │   │   │   │   │   ├── right_focus.jpg
│   │   │   │   │   │   ├── success.gif
│   │   │   │   │   │   └── success.png
│   │   │   │   │   ├── video.css
│   │   │   │   │   ├── video.html
│   │   │   │   │   └── video.js
│   │   │   │   ├── webapp
│   │   │   │   │   └── webapp.html
│   │   │   │   └── wordimage
│   │   │   │   ├── fClipboard_ueditor.swf
│   │   │   │   ├── imageUploader.swf
│   │   │   │   ├── tangram.js
│   │   │   │   ├── wordimage.html
│   │   │   │   └── wordimage.js
│   │   │   ├── jsp
│   │   │   │   ├── config.json
│   │   │   │   └── controller.jsp
│   │   │   ├── lang
│   │   │   │   ├── en
│   │   │   │   │   ├── en.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── addimage.png
│   │   │   │   │   ├── alldeletebtnhoverskin.png
│   │   │   │   │   ├── alldeletebtnupskin.png
│   │   │   │   │   ├── background.png
│   │   │   │   │   ├── button.png
│   │   │   │   │   ├── copy.png
│   │   │   │   │   ├── deletedisable.png
│   │   │   │   │   ├── deleteenable.png
│   │   │   │   │   ├── listbackground.png
│   │   │   │   │   ├── localimage.png
│   │   │   │   │   ├── music.png
│   │   │   │   │   ├── rotateleftdisable.png
│   │   │   │   │   ├── rotateleftenable.png
│   │   │   │   │   ├── rotaterightdisable.png
│   │   │   │   │   ├── rotaterightenable.png
│   │   │   │   │   └── upload.png
│   │   │   │   └── zh-cn
│   │   │   │   ├── images
│   │   │   │   │   ├── copy.png
│   │   │   │   │   ├── localimage.png
│   │   │   │   │   ├── music.png
│   │   │   │   │   └── upload.png
│   │   │   │   └── zh-cn.js
│   │   │   ├── themes
│   │   │   │   ├── default
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── ueditor.css
│   │   │   │   │   │   └── ueditor.min.css
│   │   │   │   │   ├── dialogbase.css
│   │   │   │   │   └── images
│   │   │   │   │   ├── anchor.gif
│   │   │   │   │   ├── arrow_down.png
│   │   │   │   │   ├── arrow.png
│   │   │   │   │   ├── arrow_up.png
│   │   │   │   │   ├── button-bg.gif
│   │   │   │   │   ├── cancelbutton.gif
│   │   │   │   │   ├── charts.png
│   │   │   │   │   ├── cursor_h.gif
│   │   │   │   │   ├── cursor_h.png
│   │   │   │   │   ├── cursor_v.gif
│   │   │   │   │   ├── cursor_v.png
│   │   │   │   │   ├── dialog-title-bg.png
│   │   │   │   │   ├── filescan.png
│   │   │   │   │   ├── highlighted.gif
│   │   │   │   │   ├── icons-all.gif
│   │   │   │   │   ├── icons.gif
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── loaderror.png
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── lock.gif
│   │   │   │   │   ├── neweditor-tab-bg.png
│   │   │   │   │   ├── pagebreak.gif
│   │   │   │   │   ├── scale.png
│   │   │   │   │   ├── sortable.png
│   │   │   │   │   ├── spacer.gif
│   │   │   │   │   ├── sparator_v.png
│   │   │   │   │   ├── table-cell-align.png
│   │   │   │   │   ├── tangram-colorpicker.png
│   │   │   │   │   ├── toolbar_bg.png
│   │   │   │   │   ├── unhighlighted.gif
│   │   │   │   │   ├── upload.png
│   │   │   │   │   ├── videologo.gif
│   │   │   │   │   ├── word.gif
│   │   │   │   │   └── wordpaste.png
│   │   │   │   └── iframe.css
│   │   │   ├── third-party
│   │   │   │   ├── codemirror
│   │   │   │   │   ├── codemirror.css
│   │   │   │   │   └── codemirror.js
│   │   │   │   ├── highcharts
│   │   │   │   │   ├── adapters
│   │   │   │   │   │   ├── mootools-adapter.js
│   │   │   │   │   │   ├── mootools-adapter.src.js
│   │   │   │   │   │   ├── prototype-adapter.js
│   │   │   │   │   │   ├── prototype-adapter.src.js
│   │   │   │   │   │   ├── standalone-framework.js
│   │   │   │   │   │   └── standalone-framework.src.js
│   │   │   │   │   ├── highcharts.js
│   │   │   │   │   ├── highcharts-more.js
│   │   │   │   │   ├── highcharts-more.src.js
│   │   │   │   │   ├── highcharts.src.js
│   │   │   │   │   ├── modules
│   │   │   │   │   │   ├── annotations.js
│   │   │   │   │   │   ├── annotations.src.js
│   │   │   │   │   │   ├── canvas-tools.js
│   │   │   │   │   │   ├── canvas-tools.src.js
│   │   │   │   │   │   ├── data.js
│   │   │   │   │   │   ├── data.src.js
│   │   │   │   │   │   ├── drilldown.js
│   │   │   │   │   │   ├── drilldown.src.js
│   │   │   │   │   │   ├── exporting.js
│   │   │   │   │   │   ├── exporting.src.js
│   │   │   │   │   │   ├── funnel.js
│   │   │   │   │   │   ├── funnel.src.js
│   │   │   │   │   │   ├── heatmap.js
│   │   │   │   │   │   ├── heatmap.src.js
│   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   ├── map.src.js
│   │   │   │   │   │   ├── no-data-to-display.js
│   │   │   │   │   │   └── no-data-to-display.src.js
│   │   │   │   │   └── themes
│   │   │   │   │   ├── dark-blue.js
│   │   │   │   │   ├── dark-green.js
│   │   │   │   │   ├── gray.js
│   │   │   │   │   ├── grid.js
│   │   │   │   │   └── skies.js
│   │   │   │   ├── jquery-1.10.2.js
│   │   │   │   ├── jquery-1.10.2.min.js
│   │   │   │   ├── jquery-1.10.2.min.map
│   │   │   │   ├── snapscreen
│   │   │   │   │   └── UEditorSnapscreen.exe
│   │   │   │   ├── SyntaxHighlighter
│   │   │   │   │   ├── shCoreDefault.css
│   │   │   │   │   └── shCore.js
│   │   │   │   ├── video-js
│   │   │   │   │   ├── font
│   │   │   │   │   │   ├── vjs.eot
│   │   │   │   │   │   ├── vjs.svg
│   │   │   │   │   │   ├── vjs.ttf
│   │   │   │   │   │   └── vjs.woff
│   │   │   │   │   ├── video.dev.js
│   │   │   │   │   ├── video.js
│   │   │   │   │   ├── video-js.css
│   │   │   │   │   ├── video-js.min.css
│   │   │   │   │   └── video-js.swf
│   │   │   │   ├── webuploader
│   │   │   │   │   ├── Uploader.swf
│   │   │   │   │   ├── webuploader.css
│   │   │   │   │   ├── webuploader.custom.js
│   │   │   │   │   ├── webuploader.custom.min.js
│   │   │   │   │   ├── webuploader.flashonly.js
│   │   │   │   │   ├── webuploader.flashonly.min.js
│   │   │   │   │   ├── webuploader.html5only.js
│   │   │   │   │   ├── webuploader.html5only.min.js
│   │   │   │   │   ├── webuploader.js
│   │   │   │   │   ├── webuploader.min.js
│   │   │   │   │   ├── webuploader.withoutimage.js
│   │   │   │   │   └── webuploader.withoutimage.min.js
│   │   │   │   ├── xss.min.js
│   │   │   │   └── zeroclipboard
│   │   │   │   ├── ZeroClipboard.js
│   │   │   │   ├── ZeroClipboard.min.js
│   │   │   │   └── ZeroClipboard.swf
│   │   │   ├── ueditor.all.js
│   │   │   ├── ueditor.all.min.js
│   │   │   ├── ueditor.config.js
│   │   │   ├── ueditor.parse.js
│   │   │   └── ueditor.parse.min.js
│   │   └── WEB-INF
│   │   ├── lib
│   │   │   ├── activation-1.1.1.jar
│   │   │   ├── ant-1.8.2.jar
│   │   │   ├── ant-launcher-1.8.2.jar
│   │   │   ├── aopalliance-1.0.jar
│   │   │   ├── asm-1.5.3.jar
│   │   │   ├── aspectjrt-1.6.11.jar
│   │   │   ├── aspectjweaver-1.6.11.jar
│   │   │   ├── cas-client-core-3.2.1.jar
│   │   │   ├── cglib-2.1_3.jar
│   │   │   ├── classmate-1.0.0.jar
│   │   │   ├── commons-beanutils-1.8.3.jar
│   │   │   ├── commons-codec-1.9.jar
│   │   │   ├── commons-dbcp-1.2.2.jar
│   │   │   ├── commons-email-1.4.jar
│   │   │   ├── commons-fileupload-1.3.1.jar
│   │   │   ├── commons-io-2.4.jar
│   │   │   ├── commons-lang3-3.3.2.jar
│   │   │   ├── commons-logging-1.2.jar
│   │   │   ├── commons-pool-1.3.jar
│   │   │   ├── druid-1.0.18.jar
│   │   │   ├── ehcache-core-2.5.0.jar
│   │   │   ├── fastjson-1.1.41.jar
│   │   │   ├── freemarker-2.3.22.jar
│   │   │   ├── guava-17.0.jar
│   │   │   ├── hibernate-validator-5.1.3.Final.jar
│   │   │   ├── jackson-annotations-2.7.3.jar
│   │   │   ├── jackson-core-2.7.3.jar
│   │   │   ├── jackson-core-asl-1.9.13.jar
│   │   │   ├── jackson-databind-2.7.3.jar
│   │   │   ├── jackson-mapper-asl-1.9.13.jar
│   │   │   ├── javax.mail-1.5.2.jar
│   │   │   ├── jboss-logging-3.1.3.GA.jar
│   │   │   ├── jcl-over-slf4j-1.7.13.jar
│   │   │   ├── joda-time-2.9.1.jar
│   │   │   ├── json.jar
│   │   │   ├── jstl-1.2.jar
│   │   │   ├── log4j-1.2.17.jar
│   │   │   ├── mybatis-3.2.6.jar
│   │   │   ├── mybatis-spring-1.2.2.jar
│   │   │   ├── mysql-connector-java-5.1.30.jar
│   │   │   ├── pinyin4j-2.5.0.jar
│   │   │   ├── poi-3.7.jar
│   │   │   ├── shiro-cas-1.2.3.jar
│   │   │   ├── shiro-core-1.2.3.jar
│   │   │   ├── shiro-ehcache-1.2.3.jar
│   │   │   ├── shiro-spring-1.2.3.jar
│   │   │   ├── shiro-web-1.2.3.jar
│   │   │   ├── slf4j-api-1.7.7.jar
│   │   │   ├── slf4j-log4j12-1.7.7.jar
│   │   │   ├── spring-aop-4.2.4.RELEASE.jar
│   │   │   ├── spring-aspects-4.2.4.RELEASE.jar
│   │   │   ├── spring-beans-4.2.4.RELEASE.jar
│   │   │   ├── spring-context-4.2.4.RELEASE.jar
│   │   │   ├── spring-context-support-4.2.4.RELEASE.jar
│   │   │   ├── spring-core-4.2.4.RELEASE.jar
│   │   │   ├── spring-expression-4.2.4.RELEASE.jar
│   │   │   ├── spring-jdbc-4.2.4.RELEASE.jar
│   │   │   ├── spring-messaging-4.2.4.RELEASE.jar
│   │   │   ├── spring-oxm-4.2.4.RELEASE.jar
│   │   │   ├── spring-security-acl-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-aspects-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-config-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-core-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-taglibs-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-test-4.0.4.RELEASE.jar
│   │   │   ├── spring-security-web-4.0.4.RELEASE.jar
│   │   │   ├── spring-test-4.2.4.RELEASE.jar
│   │   │   ├── spring-tx-4.2.4.RELEASE.jar
│   │   │   ├── spring-web-4.2.4.RELEASE.jar
│   │   │   ├── spring-webmvc-4.2.4.RELEASE.jar
│   │   │   ├── spring-websocket-4.2.4.RELEASE.jar
│   │   │   ├── ueditor-1.1.2.jar
│   │   │   └── validation-api-1.1.0.Final.jar
│   │   ├── menu.jsp
│   │   ├── sys
│   │   │   ├── peradd.jsp
│   │   │   ├── peredit.jsp
│   │   │   ├── per.jsp
│   │   │   ├── roleadd.jsp
│   │   │   ├── roleedit.jsp
│   │   │   ├── role.jsp
│   │   │   ├── role_per.jsp
│   │   │   └── user.jsp
│   │   ├── view
│   │   │   ├── index.jsp
│   │   │   ├── jinghua.jsp
│   │   │   ├── mainContent.jsp
│   │   │   └── secondContent.jsp
│   │   └── web.xml
│   └── 数据库
│   └── mrbbs.sql
├── 04
│   ├── cityinfo
│   │   ├── build
│   │   │   └── classes
│   │   │   ├── cityinfo.xml
│   │   │   ├── com
│   │   │   │   └── mingrisoft
│   │   │   │   ├── 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
│   │   ├── src
│   │   │   ├── cityinfo.xml
│   │   │   ├── com
│   │   │   │   └── mingrisoft
│   │   │   │   ├── 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_exit.png
│   │   │   ├── admin_index.gif
│   │   │   ├── admin_index.png
│   │   │   ├── admin_menu.jpg
│   │   │   ├── admin_top.jpg
│   │   │   ├── admin_top.png
│   │   │   ├── back.gif
│   │   │   ├── b_logon.gif
│   │   │   ├── b_reset.gif
│   │   │   ├── default_e.jpg
│   │   │   ├── default_m.jpg
│   │   │   ├── default_t.jpg
│   │   │   ├── end.jpg
│   │   │   ├── end.png
│   │   │   ├── images.zip
│   │   │   ├── leftD.jpg
│   │   │   ├── leftS.jpg
│   │   │   ├── logo.gif
│   │   │   ├── logon_bg.png
│   │   │   ├── logon_end.gif
│   │   │   ├── logon_middle.gif
│   │   │   ├── logon_middle.png
│   │   │   ├── logon_top.gif
│   │   │   ├── logon_top.png
│   │   │   ├── logo.png
│   │   │   ├── menu.gif
│   │   │   ├── menu.png
│   │   │   ├── m_index.gif
│   │   │   ├── pcard1.jpg
│   │   │   ├── pcard1.png
│   │   │   ├── pcard2.jpg
│   │   │   ├── pcard2.png
│   │   │   └── 供求信息网的图片.rar
│   │   ├── 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
│   │   ├── lib
│   │   │   ├── commons-fileupload-1.3.3.jar
│   │   │   ├── commons-lang3-3.6.jar
│   │   │   ├── freemarker-2.3.23.jar
│   │   │   ├── javassist-3.20.0-GA.jar
│   │   │   ├── log4j-api-2.8.2.jar
│   │   │   ├── ognl-3.1.15.jar
│   │   │   ├── sqljdbc4.jar
│   │   │   └── struts2-core-2.5.13.jar
│   │   └── web.xml
│   └── 数据库
│   ├── db_CityInfo_Data.MDF
│   └── db_CityInfo_log.LDF
├── 05
│   ├── logistics
│   │   ├── build
│   │   │   └── classes
│   │   │   ├── com
│   │   │   │   ├── dao
│   │   │   │   │   ├── AdminDao.class
│   │   │   │   │   ├── CarDao.class
│   │   │   │   │   ├── CustomerDao.class
│   │   │   │   │   └── GoodsAndLogDao.class
│   │   │   │   ├── form
│   │   │   │   │   ├── AdminForm.class
│   │   │   │   │   ├── CarForm.class
│   │   │   │   │   ├── CustomerForm.class
│   │   │   │   │   ├── GoodsForm.class
│   │   │   │   │   └── LogForm.class
│   │   │   │   ├── tools
│   │   │   │   │   ├── CurrentTime.class
│   │   │   │   │   ├── JDBConnection.class
│   │   │   │   │   ├── MyPagination.class
│   │   │   │   │   └── MySuperAction.class
│   │   │   │   └── webtier
│   │   │   │   ├── AdminAction.class
│   │   │   │   ├── CarAction.class
│   │   │   │   ├── CarAction.properties
│   │   │   │   ├── CustomerAction.class
│   │   │   │   └── GoodsAction.class
│   │   │   ├── struts.properties
│   │   │   ├── struts.xml
│   │   │   └── template
│   │   │   └── simple
│   │   │   ├── actionerror.ftl
│   │   │   ├── actionmessage.flt
│   │   │   └── fielderror.ftl
│   │   ├── src
│   │   │   ├── com
│   │   │   │   ├── dao
│   │   │   │   │   ├── AdminDao.java
│   │   │   │   │   ├── CarDao.java
│   │   │   │   │   ├── CustomerDao.java
│   │   │   │   │   └── GoodsAndLogDao.java
│   │   │   │   ├── form
│   │   │   │   │   ├── AdminForm.java
│   │   │   │   │   ├── CarForm.java
│   │   │   │   │   ├── CustomerForm.java
│   │   │   │   │   ├── GoodsForm.java
│   │   │   │   │   └── LogForm.java
│   │   │   │   ├── tools
│   │   │   │   │   ├── CurrentTime.java
│   │   │   │   │   ├── JDBConnection.java
│   │   │   │   │   ├── MyPagination.java
│   │   │   │   │   └── MySuperAction.java
│   │   │   │   └── webtier
│   │   │   │   ├── AdminAction.java
│   │   │   │   ├── CarAction.java
│   │   │   │   ├── CarAction.properties
│   │   │   │   ├── CustomerAction.java
│   │   │   │   └── GoodsAction.java
│   │   │   ├── struts.properties
│   │   │   ├── struts.xml
│   │   │   └── template
│   │   │   └── simple
│   │   │   ├── actionerror.ftl
│   │   │   ├── actionmessage.flt
│   │   │   └── fielderror.ftl
│   │   └── WebContent
│   │   ├── admin_index.jsp
│   │   ├── admin_loginout.jsp
│   │   ├── admin_updatePassword.jsp
│   │   ├── car_insertCar.jsp
│   │   ├── car_queryCarForm.jsp
│   │   ├── car_queryCarList.jsp
│   │   ├── css
│   │   │   └── style.css
│   │   ├── customer_queryCustomerList.jsp
│   │   ├── goods_changeOperation.jsp
│   │   ├── goods_insertGoods.jsp
│   │   ├── goods_queryCar.jsp
│   │   ├── goods_queryGoodsId.jsp
│   │   ├── goods_queryGoodsList.jsp
│   │   ├── images
│   │   │   ├── add.jpg
│   │   │   ├── land.gif
│   │   │   ├── logistics_01.jpg
│   │   │   ├── logistics_04.jpg
│   │   │   ├── logistics_05.jpg
│   │   │   ├── logistics_05.png
│   │   │   ├── logistics_06.jpg
│   │   │   ├── logistics_07.jpg
│   │   │   ├── logistics_08.jpg
│   │   │   ├── logistics_09.jpg
│   │   │   ├── logistics_10.jpg
│   │   │   ├── logistics_11.jpg
│   │   │   ├── logistics_12.jpg
│   │   │   ├── logistics_13.jpg
│   │   │   ├── logistics_14.jpg
│   │   │   ├── logistics_flow.jpg
│   │   │   ├── logo.jpg
│   │   │   ├── qrcode.png
│   │   │   ├── reset.gif
│   │   │   ├── sign.gif
│   │   │   ├── Thumbs.db
│   │   │   └── url.txt
│   │   ├── index.jsp
│   │   ├── main_down.jsp
│   │   ├── mainPage.jsp
│   │   ├── main_right.jsp
│   │   ├── main_top.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   └── WEB-INF
│   │   ├── lib
│   │   │   ├── commons-fileupload-1.3.3.jar
│   │   │   ├── commons-lang3-3.6.jar
│   │   │   ├── freemarker-2.3.23.jar
│   │   │   ├── javassist-3.20.0-GA.jar
│   │   │   ├── log4j-api-2.8.2.jar
│   │   │   ├── mysql-connector-java-5.1.20-bin.jar
│   │   │   ├── ognl-3.1.15.jar
│   │   │   └── struts2-core-2.5.13.jar
│   │   └── web.xml
│   └── 数据库
│   └── db_logistics.sql
├── 06
│   ├── knowledge
│   │   ├── build
│   │   │   └── classes
│   │   │   ├── applicationContext-action.xml
│   │   │   ├── applicationContext-dao.xml
│   │   │   ├── com
│   │   │   │   └── hrl
│   │   │   │   ├── action
│   │   │   │   │   ├── ActicleAction.class
│   │   │   │   │   ├── ActionConstant.class
│   │   │   │   │   ├── DefaultAction.class
│   │   │   │   │   ├── HomeAction.class
│   │   │   │   │   ├── ReplyAction.class
│   │   │   │   │   └── UserAction.class
│   │   │   │   ├── dao
│   │   │   │   │   ├── IArticleDao.class
│   │   │   │   │   ├── IDefaultDao.class
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── ArticleDaoImpl.class
│   │   │   │   │   │   ├── DefaultDaoImpl.class
│   │   │   │   │   │   ├── ReplyDaoImpl.class
│   │   │   │   │   │   └── UserDaoImpl.class
│   │   │   │   │   ├── IReplyDao.class
│   │   │   │   │   └── IUserDao.class
│   │   │   │   ├── model
│   │   │   │   │   ├── Article.class
│   │   │   │   │   ├── ArticleComparator.class
│   │   │   │   │   ├── Article.hbm.xml
│   │   │   │   │   ├── ArticleType.class
│   │   │   │   │   ├── ArticleType.hbm.xml
│   │   │   │   │   ├── Reply.class
│   │   │   │   │   ├── Reply.hbm.xml
│   │   │   │   │   ├── Scan.class
│   │   │   │   │   ├── Scan.hbm.xml
│   │   │   │   │   ├── User.class
│   │   │   │   │   └── User.hbm.xml
│   │   │   │   └── util
│   │   │   │   ├── JSONKit.class
│   │   │   │   └── PageUtil.class
│   │   │   ├── hibernate.cfg.xml
│   │   │   ├── log4j.properties
│   │   │   └── struts.xml
│   │   ├── src
│   │   │   ├── applicationContext-action.xml
│   │   │   ├── applicationContext-dao.xml
│   │   │   ├── com
│   │   │   │   └── hrl
│   │   │   │   ├── action
│   │   │   │   │   ├── ActicleAction.java
│   │   │   │   │   ├── ActionConstant.java
│   │   │   │   │   ├── DefaultAction.java
│   │   │   │   │   ├── HomeAction.java
│   │   │   │   │   ├── ReplyAction.java
│   │   │   │   │   └── UserAction.java
│   │   │   │   ├── dao
│   │   │   │   │   ├── IArticleDao.java
│   │   │   │   │   ├── IDefaultDao.java
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── ArticleDaoImpl.java
│   │   │   │   │   │   ├── DefaultDaoImpl.java
│   │   │   │   │   │   ├── ReplyDaoImpl.java
│   │   │   │   │   │   └── UserDaoImpl.java
│   │   │   │   │   ├── IReplyDao.java
│   │   │   │   │   └── IUserDao.java
│   │   │   │   ├── model
│   │   │   │   │   ├── Article.hbm.xml
│   │   │   │   │   ├── Article.java
│   │   │   │   │   ├── ArticleType.hbm.xml
│   │   │   │   │   ├── ArticleType.java
│   │   │   │   │   ├── Reply.hbm.xml
│   │   │   │   │   ├── Reply.java
│   │   │   │   │   ├── Scan.hbm.xml
│   │   │   │   │   ├── Scan.java
│   │   │   │   │   ├── User.hbm.xml
│   │   │   │   │   └── User.java
│   │   │   │   └── util
│   │   │   │   ├── JSONKit.java
│   │   │   │   └── PageUtil.java
│   │   │   ├── hibernate.cfg.xml
│   │   │   ├── log4j.properties
│   │   │   └── struts.xml
│   │   └── WebContent
│   │   ├── copyright_index.jsp
│   │   ├── css
│   │   │   ├── css.css
│   │   │   └── style.css
│   │   ├── images
│   │   │   ├── bbs_header_nav.gif
│   │   │   ├── bg.gif
│   │   │   ├── btn_register.gif
│   │   │   ├── end.gif
│   │   │   ├── grxx.gif
│   │   │   ├── hd.gif
│   │   │   ├── home32.gif
│   │   │   ├── ite.gif
│   │   │   ├── left011.gif
│   │   │   ├── left01.gif
│   │   │   ├── left022.GIF
│   │   │   ├── left02.gif
│   │   │   ├── left033.gif
│   │   │   ├── left03.gif
│   │   │   ├── login1_01.gif
│   │   │   ├── login1_02.gif
│   │   │   ├── login1_03.gif
│   │   │   ├── login1_04.gif
│   │   │   ├── loginbg.gif
│   │   │   ├── loginb.gif
│   │   │   ├── login.jpg
│   │   │   ├── logo.gif
│   │   │   ├── mark_time.gif
│   │   │   ├── mark_title_simple.gif
│   │   │   ├── mark_ts.gif
│   │   │   ├── mark_unsearch.gif
│   │   │   ├── so.GIF
│   │   │   ├── text.gif
│   │   │   ├── top_01.gif
│   │   │   ├── top_02.gif
│   │   │   ├── top_03.gif
│   │   │   ├── top_04.gif
│   │   │   ├── top_05.gif
│   │   │   ├── top_06.gif
│   │   │   ├── top_07.gif
│   │   │   ├── top_08.gif
│   │   │   ├── top_09.gif
│   │   │   ├── top_10.gif
│   │   │   ├── top2_01.gif
│   │   │   ├── top2_02.gif
│   │   │   ├── top2_03.gif
│   │   │   ├── top2_04.gif
│   │   │   ├── top2_05.gif
│   │   │   ├── top2_06.gif
│   │   │   ├── top2_07.gif
│   │   │   ├── top2_08.gif
│   │   │   ├── top2_09.gif
│   │   │   ├── top2_10.gif
│   │   │   ├── topic_permit.gif
│   │   │   ├── tw.gif
│   │   │   ├── unface.gif
│   │   │   ├── wh.gif
│   │   │   ├── wz.gif
│   │   │   └── zhuce.jpg
│   │   ├── index.jsp
│   │   ├── js
│   │   │   ├── article_type.js
│   │   │   ├── articleTypes.js
│   │   │   ├── index.js
│   │   │   ├── jquery.js
│   │   │   ├── register.js
│   │   │   ├── search.js
│   │   │   └── user.js
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── success.jsp
│   │   ├── txt
│   │   │   └── item.txt
│   │   └── WEB-INF
│   │   ├── jsp
│   │   │   ├── article
│   │   │   │   ├── addArticle.jsp
│   │   │   │   ├── forum.jsp
│   │   │   │   ├── myArticle.jsp
│   │   │   │   ├── search.jsp
│   │   │   │   ├── searchResult.jsp
│   │   │   │   ├── singleArticle.jsp
│   │   │   │   ├── type_article.jsp
│   │   │   │   ├── updateArticle.jsp
│   │   │   │   └── userArticles.jsp
│   │   │   ├── copyright.jsp
│   │   │   ├── copyright_little.jsp
│   │   │   ├── pageUtil.jsp
│   │   │   └── user
│   │   │   ├── login.jsp
│   │   │   ├── register.jsp
│   │   │   ├── relogin.jsp
│   │   │   ├── success.jsp
│   │   │   └── update.jsp
│   │   ├── lib
│   │   │   ├── antlr-2.7.6.jar
│   │   │   ├── aopalliance-1.0.jar
│   │   │   ├── asm-5.2.jar
│   │   │   ├── asm-commons-5.2.jar
│   │   │   ├── asm-tree-5.2.jar
│   │   │   ├── aspectjweaver-1.8.7.jar
│   │   │   ├── bsh-2.0b4.jar
│   │   │   ├── classworlds-1.1.jar
│   │   │   ├── commons-beanutils-1.9.2.jar
│   │   │   ├── commons-collections-3.2.2.jar
│   │   │   ├── commons-digester-2.1.jar
│   │   │   ├── commons-fileupload-1.3.3.jar
│   │   │   ├── commons-io-2.5.jar
│   │   │   ├── commons-lang-2.4.jar
│   │   │   ├── commons-lang3-3.6.jar
│   │   │   ├── commons-logging-1.1.3.jar
│   │   │   ├── dom4j-1.6.1.jar
│   │   │   ├── dwr-1.1.1.jar
│   │   │   ├── ezmorph-1.0.6.jar
│   │   │   ├── freemarker-2.3.23.jar
│   │   │   ├── google-collections-1.0.jar
│   │   │   ├── google-gxp-0.2.4-beta.jar
│   │   │   ├── hamcrest-core-1.3.jar
│   │   │   ├── hibernate-commons-annotations-5.0.1.Final.jar
│   │   │   ├── hibernate-core-4.1.8.Final.jar
│   │   │   ├── hibernate-jpa-2.0-api-1.0.1.Final.jar
│   │   │   ├── jackson-annotations-2.6.0.jar
│   │   │   ├── jackson-core-2.6.1.jar
│   │   │   ├── jackson-databind-2.6.1.jar
│   │   │   ├── javassist-3.20.0-GA.jar
│   │   │   ├── jboss-logging-3.1.0.GA.jar
│   │   │   ├── jcl-over-slf4j-1.7.6.jar
│   │   │   ├── jcommander-1.12.jar
│   │   │   ├── json-lib-2.3-jdk15.jar
│   │   │   ├── jta.jar
│   │   │   ├── juli-6.0.18.jar
│   │   │   ├── junit-4.5.jar
│   │   │   ├── log4j-api-2.8.2.jar
│   │   │   ├── log4j-api-2.9.1.jar
│   │   │   ├── log4j-core-2.9.1.jar
│   │   │   ├── mysql-connector-java-5.1.20-bin.jar
│   │   │   ├── ognl-3.1.15.jar
│   │   │   ├── org.apache.felix.framework-4.0.3.jar
│   │   │   ├── org.apache.felix.main-4.0.3.jar
│   │   │   ├── org.apache.felix.shell-1.4.3.jar
│   │   │   ├── org.apache.felix.shell.tui-1.4.1.jar
│   │   │   ├── org.osgi.compendium-4.0.0.jar
│   │   │   ├── org.osgi.core-4.1.0.jar
│   │   │   ├── oval-1.31.jar
│   │   │   ├── plexus-container-default-1.0-alpha-10.jar
│   │   │   ├── plexus-utils-1.2.jar
│   │   │   ├── sitemesh-2.4.2.jar
│   │   │   ├── slf4j-api-1.7.12.jar
│   │   │   ├── snakeyaml-1.6.jar
│   │   │   ├── spring-aop-4.1.6.RELEASE.jar
│   │   │   ├── spring-beans-4.1.6.RELEASE.jar
│   │   │   ├── spring-context-4.1.6.RELEASE.jar
│   │   │   ├── spring-core-4.1.6.RELEASE.jar
│   │   │   ├── spring-expression-4.1.6.RELEASE.jar
│   │   │   ├── spring-jdbc-4.1.6.RELEASE.jar
│   │   │   ├── spring-orm-4.1.6.RELEASE.jar
│   │   │   ├── spring-test-4.1.6.RELEASE.jar
│   │   │   ├── spring-tx-4.1.6.RELEASE.jar
│   │   │   ├── spring-web-4.1.6.RELEASE.jar
│   │   │   ├── struts2-bean-validation-plugin-2.5.13.jar
│   │   │   ├── struts2-cdi-plugin-2.5.13.jar
│   │   │   ├── struts2-config-browser-plugin-2.5.13.jar
│   │   │   ├── struts2-convention-plugin-2.5.13.jar
│   │   │   ├── struts2-core-2.5.13.jar
│   │   │   ├── struts2-dwr-plugin-2.5.13.jar
│   │   │   ├── struts2-embeddedjsp-plugin-2.5.13.jar
│   │   │   ├── struts2-jasperreports-plugin-2.5.13.jar
│   │   │   ├── struts2-javatemplates-plugin-2.5.13.jar
│   │   │   ├── struts2-jfreechart-plugin-2.5.13.jar
│   │   │   ├── struts2-json-plugin-2.5.13.jar
│   │   │   ├── struts2-junit-plugin-2.5.13.jar
│   │   │   ├── struts2-oval-plugin-2.5.13.jar
│   │   │   ├── struts2-pell-multipart-plugin-2.5.13.jar
│   │   │   ├── struts2-plexus-plugin-2.5.13.jar
│   │   │   ├── struts2-sitegraph-plugin-2.5.13.jar
│   │   │   ├── struts2-sitemesh-plugin-2.5.13.jar
│   │   │   ├── struts2-spring-plugin-2.5.13.jar
│   │   │   ├── struts2-testng-plugin-2.5.13.jar
│   │   │   ├── struts2-tiles-plugin-2.5.13.jar
│   │   │   ├── tiles-api-3.0.7.jar
│   │   │   ├── tiles-autotag-core-runtime-1.2.jar
│   │   │   ├── tiles-core-3.0.7.jar
│   │   │   ├── tiles-el-3.0.7.jar
│   │   │   ├── tiles-freemarker-3.0.7.jar
│   │   │   ├── tiles-jsp-3.0.7.jar
│   │   │   ├── tiles-ognl-3.0.7.jar
│   │   │   ├── tiles-request-api-1.0.6.jar
│   │   │   ├── tiles-request-freemarker-1.0.6.jar
│   │   │   ├── tiles-request-jsp-1.0.6.jar
│   │   │   ├── tiles-request-servlet-1.0.6.jar
│   │   │   ├── tiles-servlet-3.0.7.jar
│   │   │   ├── tiles-template-3.0.7.jar
│   │   │   ├── validation-api-1.1.0.Final.jar
│   │   │   ├── velocity-1.7.jar
│   │   │   ├── velocity-tools-2.0.jar
│   │   │   ├── xmlpull-1.1.3.1.jar
│   │   │   ├── xpp3_min-1.1.4c.jar
│   │   │   └── xstream-1.4.10.jar
│   │   └── web.xml
│   └── 数据库
│   └── db_knowledge.sql
├── 07
│   ├── 9GridDiary
│   │   ├── build
│   │   │   └── classes
│   │   │   └── com
│   │   │   └── mr
│   │   │   ├── dao
│   │   │   │   ├── DiaryDao.class
│   │   │   │   └── UserDao.class
│   │   │   ├── filter
│   │   │   │   └── CharacterEncodingFilter.class
│   │   │   ├── model
│   │   │   │   ├── CityMap.class
│   │   │   │   ├── Commnet.class
│   │   │   │   ├── Diary.class
│   │   │   │   └── User.class
│   │   │   ├── servlet
│   │   │   │   ├── CreateImg.class
│   │   │   │   ├── DiaryServlet.class
│   │   │   │   └── UserServlet.class
│   │   │   └── tools
│   │   │   ├── ConnDB.class
│   │   │   ├── connDB.properties
│   │   │   └── MyPagination.class
│   │   ├── src
│   │   │   └── com
│   │   │   └── mr
│   │   │   ├── dao
│   │   │   │   ├── DiaryDao.java
│   │   │   │   └── UserDao.java
│   │   │   ├── filter
│   │   │   │   └── CharacterEncodingFilter.java
│   │   │   ├── model
│   │   │   │   ├── CityMap.java
│   │   │   │   ├── Commnet.java
│   │   │   │   ├── Diary.java
│   │   │   │   └── User.java
│   │   │   ├── servlet
│   │   │   │   ├── CreateImg.java
│   │   │   │   ├── DiaryServlet.java
│   │   │   │   └── UserServlet.java
│   │   │   └── tools
│   │   │   ├── ConnDB.java
│   │   │   ├── connDB.properties
│   │   │   └── MyPagination.java
│   │   └── WebContent
│   │   ├── ajaxReturnMessage.jsp
│   │   ├── bottom.jsp
│   │   ├── CSS
│   │   │   └── style.css
│   │   ├── forgetPwd_1.jsp
│   │   ├── forgetPwd_2.jsp
│   │   ├── images
│   │   │   ├── 1.png
│   │   │   ├── 2.png
│   │   │   ├── 3.png
│   │   │   ├── 4.png
│   │   │   ├── 5.png
│   │   │   ├── 6.png
│   │   │   ├── 7.png
│   │   │   ├── 8.png
│   │   │   ├── 9.png
│   │   │   ├── background.png
│   │   │   ├── bg_00.jpg
│   │   │   ├── bg_01.jpg
│   │   │   ├── bg_02.jpg
│   │   │   ├── bg_bottom.jpg
│   │   │   ├── bg_top.png
│   │   │   ├── diary
│   │   │   │   ├── -1625618782951844312.png
│   │   │   │   ├── -1625618782951844312scale.jpg
│   │   │   │   ├── 2030326276105596531.png
│   │   │   │   ├── 2030326276105596531scale.jpg
│   │   │   │   ├── -2201304326449572193.png
│   │   │   │   ├── -2201304326449572193scale.jpg
│   │   │   │   ├── 241344336121425196.png
│   │   │   │   ├── 241344336121425196scale.jpg
│   │   │   │   ├── -5039247624120215442.png
│   │   │   │   ├── -5039247624120215442scale.jpg
│   │   │   │   ├── 7076008621496558673.png
│   │   │   │   └── 7076008621496558673scale.jpg
│   │   │   ├── diaryBg_00.jpg
│   │   │   ├── diaryBg_01.jpg
│   │   │   ├── diaryBg_02.jpg
│   │   │   ├── ico01.gif
│   │   │   ├── ico01.ico
│   │   │   ├── ico02.gif
│   │   │   ├── ico02.ico
│   │   │   ├── loading.gif
│   │   │   ├── navigation_bg.jpg
│   │   │   ├── template_01.png
│   │   │   ├── template_02.png
│   │   │   └── template_03.png
│   │   ├── index.jsp
│   │   ├── JS
│   │   │   ├── AjaxRequest.js
│   │   │   ├── excanvas-modified.js
│   │   │   ├── jquery-1.3.2.min.js
│   │   │   ├── jquery.pngFix.js
│   │   │   ├── jquery.pngFix.pack.js
│   │   │   └── wghFunction.js
│   │   ├── listAllDiary.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── preview.jsp
│   │   ├── register.jsp
│   │   ├── top.jsp
│   │   ├── WEB-INF
│   │   │   ├── lib
│   │   │   │   ├── jstl-api-1.2.jar
│   │   │   │   ├── jstl-impl-1.2.jar
│   │   │   │   └── mysql_connector_java_5.1.36_bin.jar
│   │   │   └── web.xml
│   │   └── writeDiary.jsp
│   └── 数据库
│   └── db_9griddiary.sql
├── 08
│   ├── libraryManage
│   │   ├── build
│   │   │   └── classes
│   │   │   └── com
│   │   │   ├── action
│   │   │   │   ├── BookCase.class
│   │   │   │   ├── Book.class
│   │   │   │   ├── BookType.class
│   │   │   │   ├── Borrow.class
│   │   │   │   ├── Library.class
│   │   │   │   ├── Manager.class
│   │   │   │   ├── Parameter.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
│   │   │   ├── CharacterEncodingFilter.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
│   │   ├── src
│   │   │   └── com
│   │   │   ├── action
│   │   │   │   ├── BookCase.java
│   │   │   │   ├── Book.java
│   │   │   │   ├── BookType.java
│   │   │   │   ├── Borrow.java
│   │   │   │   ├── Library.java
│   │   │   │   ├── Manager.java
│   │   │   │   ├── Parameter.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
│   │   │   ├── CharacterEncodingFilter.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
│   │   └── WebContent
│   │   ├── 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_r.gif
│   │   │   ├── borrow.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
│   │   │   ├── top_bg.gif
│   │   │   └── top_bg.png
│   │   ├── index.jsp
│   │   ├── 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
│   │   └── WEB-INF
│   │   ├── lib
│   │   │   └── mysql-connector-java-5.1.20-bin.jar
│   │   └── web.xml
│   └── 数据库
│   └── db_librarysys.sql
├── 09
│   ├── examsys
│   │   ├── build
│   │   │   └── classes
│   │   │   └── com
│   │   │   └── mrkj
│   │   │   └── ygl
│   │   │   ├── base
│   │   │   │   └── BaseContext.class
│   │   │   ├── Connection
│   │   │   │   └── DaoConnection.class
│   │   │   ├── entity
│   │   │   │   ├── BusinessAnswer.class
│   │   │   │   ├── BusinessInfo.class
│   │   │   │   ├── BusinessMain.class
│   │   │   │   ├── BusinessQuestion.class
│   │   │   │   ├── BusinessSubject.class
│   │   │   │   └── UserInfo.class
│   │   │   ├── filter
│   │   │   │   └── URLEncodeFilter.class
│   │   │   ├── service
│   │   │   │   ├── BusinessService.class
│   │   │   │   └── SystemService.class
│   │   │   ├── servlet3
│   │   │   │   ├── business
│   │   │   │   │   ├── ActionQuestionServlet.class
│   │   │   │   │   └── BusinessMainServlet.class
│   │   │   │   └── system
│   │   │   │   ├── SystemLogin.class
│   │   │   │   └── SystemRegister.class
│   │   │   ├── socket
│   │   │   │   └── MySocket.class
│   │   │   ├── standard
│   │   │   │   └── Util.class
│   │   │   ├── thread
│   │   │   │   └── Timekeeping.class
│   │   │   └── util
│   │   │   └── MrksUtils.class
│   │   ├── src
│   │   │   └── com
│   │   │   └── mrkj
│   │   │   └── ygl
│   │   │   ├── base
│   │   │   │   └── BaseContext.java
│   │   │   ├── Connection
│   │   │   │   └── DaoConnection.java
│   │   │   ├── entity
│   │   │   │   ├── BusinessAnswer.java
│   │   │   │   ├── BusinessInfo.java
│   │   │   │   ├── BusinessMain.java
│   │   │   │   ├── BusinessQuestion.java
│   │   │   │   ├── BusinessSubject.java
│   │   │   │   └── UserInfo.java
│   │   │   ├── filter
│   │   │   │   └── URLEncodeFilter.java
│   │   │   ├── service
│   │   │   │   ├── BusinessService.java
│   │   │   │   └── SystemService.java
│   │   │   ├── servlet3
│   │   │   │   ├── business
│   │   │   │   │   ├── ActionQuestionServlet.java
│   │   │   │   │   └── BusinessMainServlet.java
│   │   │   │   └── system
│   │   │   │   ├── SystemLogin.java
│   │   │   │   └── SystemRegister.java
│   │   │   ├── socket
│   │   │   │   └── MySocket.java
│   │   │   ├── standard
│   │   │   │   └── Util.java
│   │   │   ├── thread
│   │   │   │   └── Timekeeping.java
│   │   │   └── util
│   │   │   └── MrksUtils.java
│   │   └── WebContent
│   │   ├── actionStart.jsp
│   │   ├── bootstrap-3.3.5-dist
│   │   │   ├── css
│   │   │   │   ├── blog.css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.css.map
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-theme.css
│   │   │   │   ├── bootstrap-theme.css.map
│   │   │   │   └── bootstrap-theme.min.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   └── js
│   │   │   ├── bootstrap.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── jquery-1.11.3.min.js
│   │   │   └── npm.js
│   │   ├── css
│   │   │   ├── headIng.css
│   │   │   └── NewDefault.css
│   │   ├── imgs2
│   │   │   ├── chaxun01.png
│   │   │   ├── chaxun03.png
│   │   │   ├── fenlei01.png
│   │   │   ├── fenlei02.png
│   │   │   ├── index01.png
│   │   │   ├── index02.png
│   │   │   ├── index03.png
│   │   │   ├── index04.png
│   │   │   └── logo.png
│   │   ├── js
│   │   │   ├── easyui-lang-zh_CN.js
│   │   │   ├── jquery.easyui.min.js
│   │   │   ├── jquery.min.js
│   │   │   ├── MD5.js
│   │   │   ├── themes
│   │   │   │   ├── black
│   │   │   │   │   ├── accordion.css
│   │   │   │   │   ├── calendar.css
│   │   │   │   │   ├── combobox.css
│   │   │   │   │   ├── combo.css
│   │   │   │   │   ├── datagrid.css
│   │   │   │   │   ├── datalist.css
│   │   │   │   │   ├── datebox.css
│   │   │   │   │   ├── dialog.css
│   │   │   │   │   ├── easyui.css
│   │   │   │   │   ├── filebox.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── accordion_arrows.png
│   │   │   │   │   │   ├── blank.gif
│   │   │   │   │   │   ├── calendar_arrows.png
│   │   │   │   │   │   ├── combo_arrow.png
│   │   │   │   │   │   ├── datagrid_icons.png
│   │   │   │   │   │   ├── datebox_arrow.png
│   │   │   │   │   │   ├── layout_arrows.png
│   │   │   │   │   │   ├── linkbutton_bg.png
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── menu_arrows.png
│   │   │   │   │   │   ├── messager_icons.png
│   │   │   │   │   │   ├── pagination_icons.png
│   │   │   │   │   │   ├── panel_tools.png
│   │   │   │   │   │   ├── searchbox_button.png
│   │   │   │   │   │   ├── slider_handle.png
│   │   │   │   │   │   ├── spinner_arrows.png
│   │   │   │   │   │   ├── tabs_icons.png
│   │   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   ├── layout.css
│   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   ├── menubutton.css
│   │   │   │   │   ├── menu.css
│   │   │   │   │   ├── messager.css
│   │   │   │   │   ├── numberbox.css
│   │   │   │   │   ├── pagination.css
│   │   │   │   │   ├── panel.css
│   │   │   │   │   ├── progressbar.css
│   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   ├── searchbox.css
│   │   │   │   │   ├── slider.css
│   │   │   │   │   ├── spinner.css
│   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   ├── switchbutton.css
│   │   │   │   │   ├── tabs.css
│   │   │   │   │   ├── textbox.css
│   │   │   │   │   ├── tooltip.css
│   │   │   │   │   ├── tree.css
│   │   │   │   │   ├── validatebox.css
│   │   │   │   │   └── window.css
│   │   │   │   ├── bootstrap
│   │   │   │   │   ├── accordion.css
│   │   │   │   │   ├── calendar.css
│   │   │   │   │   ├── combobox.css
│   │   │   │   │   ├── combo.css
│   │   │   │   │   ├── datagrid.css
│   │   │   │   │   ├── datalist.css
│   │   │   │   │   ├── datebox.css
│   │   │   │   │   ├── dialog.css
│   │   │   │   │   ├── easyui.css
│   │   │   │   │   ├── filebox.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── accordion_arrows.png
│   │   │   │   │   │   ├── blank.gif
│   │   │   │   │   │   ├── calendar_arrows.png
│   │   │   │   │   │   ├── combo_arrow.png
│   │   │   │   │   │   ├── datagrid_icons.png
│   │   │   │   │   │   ├── datebox_arrow.png
│   │   │   │   │   │   ├── layout_arrows.png
│   │   │   │   │   │   ├── linkbutton_bg.png
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── menu_arrows.png
│   │   │   │   │   │   ├── messager_icons.png
│   │   │   │   │   │   ├── pagination_icons.png
│   │   │   │   │   │   ├── panel_tools.png
│   │   │   │   │   │   ├── searchbox_button.png
│   │   │   │   │   │   ├── slider_handle.png
│   │   │   │   │   │   ├── spinner_arrows.png
│   │   │   │   │   │   ├── tabs_icons.png
│   │   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   ├── layout.css
│   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   ├── menubutton.css
│   │   │   │   │   ├── menu.css
│   │   │   │   │   ├── messager.css
│   │   │   │   │   ├── numberbox.css
│   │   │   │   │   ├── pagination.css
│   │   │   │   │   ├── panel.css
│   │   │   │   │   ├── progressbar.css
│   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   ├── searchbox.css
│   │   │   │   │   ├── slider.css
│   │   │   │   │   ├── spinner.css
│   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   ├── switchbutton.css
│   │   │   │   │   ├── tabs.css
│   │   │   │   │   ├── textbox.css
│   │   │   │   │   ├── tooltip.css
│   │   │   │   │   ├── tree.css
│   │   │   │   │   ├── validatebox.css
│   │   │   │   │   └── window.css
│   │   │   │   ├── color.css
│   │   │   │   ├── default
│   │   │   │   │   ├── accordion.css
│   │   │   │   │   ├── calendar.css
│   │   │   │   │   ├── combobox.css
│   │   │   │   │   ├── combo.css
│   │   │   │   │   ├── datagrid.css
│   │   │   │   │   ├── datalist.css
│   │   │   │   │   ├── datebox.css
│   │   │   │   │   ├── dialog.css
│   │   │   │   │   ├── easyui.css
│   │   │   │   │   ├── filebox.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── accordion_arrows.png
│   │   │   │   │   │   ├── blank.gif
│   │   │   │   │   │   ├── calendar_arrows.png
│   │   │   │   │   │   ├── combo_arrow.png
│   │   │   │   │   │   ├── datagrid_icons.png
│   │   │   │   │   │   ├── datebox_arrow.png
│   │   │   │   │   │   ├── layout_arrows.png
│   │   │   │   │   │   ├── linkbutton_bg.png
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── menu_arrows.png
│   │   │   │   │   │   ├── messager_icons.png
│   │   │   │   │   │   ├── pagination_icons.png
│   │   │   │   │   │   ├── panel_tools.png
│   │   │   │   │   │   ├── searchbox_button.png
│   │   │   │   │   │   ├── slider_handle.png
│   │   │   │   │   │   ├── spinner_arrows.png
│   │   │   │   │   │   ├── tabs_icons.png
│   │   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   ├── layout.css
│   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   ├── menubutton.css
│   │   │   │   │   ├── menu.css
│   │   │   │   │   ├── messager.css
│   │   │   │   │   ├── numberbox.css
│   │   │   │   │   ├── pagination.css
│   │   │   │   │   ├── panel.css
│   │   │   │   │   ├── progressbar.css
│   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   ├── searchbox.css
│   │   │   │   │   ├── slider.css
│   │   │   │   │   ├── spinner.css
│   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   ├── switchbutton.css
│   │   │   │   │   ├── tabs.css
│   │   │   │   │   ├── textbox.css
│   │   │   │   │   ├── tooltip.css
│   │   │   │   │   ├── tree.css
│   │   │   │   │   ├── validatebox.css
│   │   │   │   │   └── window.css
│   │   │   │   ├── gray
│   │   │   │   │   ├── accordion.css
│   │   │   │   │   ├── calendar.css
│   │   │   │   │   ├── combobox.css
│   │   │   │   │   ├── combo.css
│   │   │   │   │   ├── datagrid.css
│   │   │   │   │   ├── datalist.css
│   │   │   │   │   ├── datebox.css
│   │   │   │   │   ├── dialog.css
│   │   │   │   │   ├── easyui.css
│   │   │   │   │   ├── filebox.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── accordion_arrows.png
│   │   │   │   │   │   ├── blank.gif
│   │   │   │   │   │   ├── calendar_arrows.png
│   │   │   │   │   │   ├── combo_arrow.png
│   │   │   │   │   │   ├── datagrid_icons.png
│   │   │   │   │   │   ├── datebox_arrow.png
│   │   │   │   │   │   ├── layout_arrows.png
│   │   │   │   │   │   ├── linkbutton_bg.png
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── menu_arrows.png
│   │   │   │   │   │   ├── messager_icons.png
│   │   │   │   │   │   ├── pagination_icons.png
│   │   │   │   │   │   ├── panel_tools.png
│   │   │   │   │   │   ├── searchbox_button.png
│   │   │   │   │   │   ├── slider_handle.png
│   │   │   │   │   │   ├── spinner_arrows.png
│   │   │   │   │   │   ├── tabs_icons.png
│   │   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   ├── layout.css
│   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   ├── menubutton.css
│   │   │   │   │   ├── menu.css
│   │   │   │   │   ├── messager.css
│   │   │   │   │   ├── numberbox.css
│   │   │   │   │   ├── pagination.css
│   │   │   │   │   ├── panel.css
│   │   │   │   │   ├── progressbar.css
│   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   ├── searchbox.css
│   │   │   │   │   ├── slider.css
│   │   │   │   │   ├── spinner.css
│   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   ├── switchbutton.css
│   │   │   │   │   ├── tabs.css
│   │   │   │   │   ├── textbox.css
│   │   │   │   │   ├── tooltip.css
│   │   │   │   │   ├── tree.css
│   │   │   │   │   ├── validatebox.css
│   │   │   │   │   └── window.css
│   │   │   │   ├── icon.css
│   │   │   │   ├── icons
│   │   │   │   │   ├── back.png
│   │   │   │   │   ├── blank.gif
│   │   │   │   │   ├── cancel.png
│   │   │   │   │   ├── clear.png
│   │   │   │   │   ├── cut.png
│   │   │   │   │   ├── edit_add.png
│   │   │   │   │   ├── edit_remove.png
│   │   │   │   │   ├── filesave.png
│   │   │   │   │   ├── filter.png
│   │   │   │   │   ├── help.png
│   │   │   │   │   ├── large_chart.png
│   │   │   │   │   ├── large_clipart.png
│   │   │   │   │   ├── large_picture.png
│   │   │   │   │   ├── large_shapes.png
│   │   │   │   │   ├── large_smartart.png
│   │   │   │   │   ├── lock.png
│   │   │   │   │   ├── man.png
│   │   │   │   │   ├── mini_add.png
│   │   │   │   │   ├── mini_edit.png
│   │   │   │   │   ├── mini_refresh.png
│   │   │   │   │   ├── more.png
│   │   │   │   │   ├── no.png
│   │   │   │   │   ├── ok.png
│   │   │   │   │   ├── pencil.png
│   │   │   │   │   ├── print.png
│   │   │   │   │   ├── redo.png
│   │   │   │   │   ├── reload.png
│   │   │   │   │   ├── search.png
│   │   │   │   │   ├── sum.png
│   │   │   │   │   ├── tip.png
│   │   │   │   │   └── undo.png
│   │   │   │   ├── metro
│   │   │   │   │   ├── accordion.css
│   │   │   │   │   ├── calendar.css
│   │   │   │   │   ├── combobox.css
│   │   │   │   │   ├── combo.css
│   │   │   │   │   ├── datagrid.css
│   │   │   │   │   ├── datalist.css
│   │   │   │   │   ├── datebox.css
│   │   │   │   │   ├── dialog.css
│   │   │   │   │   ├── easyui.css
│   │   │   │   │   ├── filebox.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── accordion_arrows.png
│   │   │   │   │   │   ├── blank.gif
│   │   │   │   │   │   ├── calendar_arrows.png
│   │   │   │   │   │   ├── combo_arrow.png
│   │   │   │   │   │   ├── datagrid_icons.png
│   │   │   │   │   │   ├── datebox_arrow.png
│   │   │   │   │   │   ├── layout_arrows.png
│   │   │   │   │   │   ├── linkbutton_bg.png
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── menu_arrows.png
│   │   │   │   │   │   ├── messager_icons.png
│   │   │   │   │   │   ├── pagination_icons.png
│   │   │   │   │   │   ├── panel_tools.png
│   │   │   │   │   │   ├── searchbox_button.png
│   │   │   │   │   │   ├── slider_handle.png
│   │   │   │   │   │   ├── spinner_arrows.png
│   │   │   │   │   │   ├── tabs_icons.png
│   │   │   │   │   │   ├── tree_icons.png
│   │   │   │   │   │   └── validatebox_warning.png
│   │   │   │   │   ├── layout.css
│   │   │   │   │   ├── linkbutton.css
│   │   │   │   │   ├── menubutton.css
│   │   │   │   │   ├── menu.css
│   │   │   │   │   ├── messager.css
│   │   │   │   │   ├── numberbox.css
│   │   │   │   │   ├── pagination.css
│   │   │   │   │   ├── panel.css
│   │   │   │   │   ├── progressbar.css
│   │   │   │   │   ├── propertygrid.css
│   │   │   │   │   ├── searchbox.css
│   │   │   │   │   ├── slider.css
│   │   │   │   │   ├── spinner.css
│   │   │   │   │   ├── splitbutton.css
│   │   │   │   │   ├── switchbutton.css
│   │   │   │   │   ├── tabs.css
│   │   │   │   │   ├── textbox.css
│   │   │   │   │   ├── tooltip.css
│   │   │   │   │   ├── tree.css
│   │   │   │   │   ├── validatebox.css
│   │   │   │   │   └── window.css
│   │   │   │   └── mobile.css
│   │   │   └── websocket.js
│   │   ├── login.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── proJs
│   │   │   └── login.js
│   │   └── WEB-INF
│   │   ├── lib
│   │   │   ├── jackson-annotations-2.7.3.jar
│   │   │   ├── jackson-core-2.7.3.jar
│   │   │   ├── jackson-core-asl-1.9.9.jar
│   │   │   ├── jackson-databind-2.7.3.jar
│   │   │   ├── jackson-jaxrs-1.9.2.jar
│   │   │   ├── jackson-mapper-asl-1.9.2.jar
│   │   │   ├── jackson-module-jaxb-annotations-2.2.3.jar
│   │   │   ├── jstl-1.2.jar
│   │   │   └── mysql-connector-java-5.1.30.jar
│   │   ├── view
│   │   │   ├── chaxun.jsp
│   │   │   ├── fenlei.jsp
│   │   │   ├── kaoshi.jsp
│   │   │   ├── main.jsp
│   │   │   └── Test.jsp
│   │   └── web.xml
│   └── 数据库
│   └── db_mrks.sql
└── 10
├── Shop
│   ├── build
│   │   └── classes
│   ├── src
│   │   ├── applicationContext-common.xml
│   │   ├── com
│   │   │   └── lyq
│   │   │   ├── action
│   │   │   │   ├── BaseAction.java
│   │   │   │   ├── BaseAction-logon-validation.xml
│   │   │   │   ├── IndexAction.java
│   │   │   │   ├── interceptor
│   │   │   │   │   ├── CustomerLoginInteceptor.java
│   │   │   │   │   └── UserLoginInterceptor.java
│   │   │   │   ├── order
│   │   │   │   │   ├── CartAction.java
│   │   │   │   │   ├── OrderAction.java
│   │   │   │   │   └── OrderAction-order_confirm-validation.xml
│   │   │   │   ├── product
│   │   │   │   │   ├── ProductAction.java
│   │   │   │   │   ├── ProductCategoryAction-category_save-validation.xml
│   │   │   │   │   └── ProductCategoryAction.java
│   │   │   │   ├── struts-admin.xml
│   │   │   │   ├── struts-default.xml
│   │   │   │   ├── struts-front.xml
│   │   │   │   └── user
│   │   │   │   ├── CustomerAction-customer_save-validation.xml
│   │   │   │   ├── CustomerAction.java
│   │   │   │   └── UserAction.java
│   │   │   ├── dao
│   │   │   │   ├── BaseDao.java
│   │   │   │   ├── DaoSupport.java
│   │   │   │   ├── DaoSupportTest.java
│   │   │   │   ├── order
│   │   │   │   │   ├── OrderDaoImpl.java
│   │   │   │   │   └── OrderDao.java
│   │   │   │   ├── product
│   │   │   │   │   ├── ProductCategoryDaoImpl.java
│   │   │   │   │   ├── ProductCategoryDao.java
│   │   │   │   │   ├── ProductDaoImpl.java
│   │   │   │   │   ├── ProductDao.java
│   │   │   │   │   ├── UploadFileDaoImpl.java
│   │   │   │   │   └── UploadFileDao.java
│   │   │   │   └── user
│   │   │   │   ├── CustomerDaoImpl.java
│   │   │   │   ├── CustomerDao.java
│   │   │   │   ├── UserDaoImpl.java
│   │   │   │   └── UserDao.java
│   │   │   ├── model
│   │   │   │   ├── order
│   │   │   │   │   ├── Order.hbm.xml
│   │   │   │   │   ├── OrderItem.hbm.xml
│   │   │   │   │   ├── OrderItem.java
│   │   │   │   │   └── Order.java
│   │   │   │   ├── OrderState.java
│   │   │   │   ├── PageModel.java
│   │   │   │   ├── PaymentWay.java
│   │   │   │   ├── product
│   │   │   │   │   ├── ProductCategory.hbm.xml
│   │   │   │   │   ├── ProductCategory.java
│   │   │   │   │   ├── ProductInfo.hbm.xml
│   │   │   │   │   ├── ProductInfo.java
│   │   │   │   │   ├── UploadFile.hbm.xml
│   │   │   │   │   └── UploadFile.java
│   │   │   │   ├── Sex.java
│   │   │   │   └── user
│   │   │   │   ├── Customer.hbm.xml
│   │   │   │   ├── Customer.java
│   │   │   │   ├── User.hbm.xml
│   │   │   │   └── User.java
│   │   │   └── util
│   │   │   ├── AppException.java
│   │   │   ├── GenericsUtils.java
│   │   │   ├── hibernate
│   │   │   │   ├── EnumType.java
│   │   │   │   ├── HibernateUtils.java
│   │   │   │   ├── OrderStateType.java
│   │   │   │   ├── PaymentWayType.java
│   │   │   │   └── SexType.java
│   │   │   ├── OrderStateConversion.java
│   │   │   ├── PaymentWayConversion.java
│   │   │   ├── SexConversion.java
│   │   │   └── StringUitl.java
│   │   ├── hibernate.cfg.xml
│   │   ├── log4j.properties
│   │   ├── struts.properties
│   │   ├── struts.xml
│   │   └── xwork-conversion.properties
│   └── WebContent
│   ├── css
│   │   ├── images
│   │   │   ├── 01.gif
│   │   │   ├── 02.gif
│   │   │   ├── 03.gif
│   │   │   ├── 04.gif
│   │   │   ├── 05.gif
│   │   │   ├── 06.gif
│   │   │   ├── 07.gif
│   │   │   ├── 08.gif
│   │   │   ├── an_06.gif
│   │   │   ├── an_08.gif
│   │   │   ├── bg_03.gif
│   │   │   ├── blue.gif
│   │   │   ├── cp01_03.gif
│   │   │   ├── cp_03.gif
│   │   │   ├── cp_06.gif
│   │   │   ├── cp_11.gif
│   │   │   ├── dl_03.gif
│   │   │   ├── dl_06.gif
│   │   │   ├── dl_08.gif
│   │   │   ├── flower.gif
│   │   │   ├── gm_06.gif
│   │   │   ├── h_32.gif
│   │   │   ├── ht_02_01.gif
│   │   │   ├── ht_02_02.gif
│   │   │   ├── ht_02_03.gif
│   │   │   ├── ht_02_06.gif
│   │   │   ├── ht_02_10.gif
│   │   │   ├── ht_02_13.gif
│   │   │   ├── ht_02_15.gif
│   │   │   ├── ht_02_18.gif
│   │   │   ├── ht_02_21.gif
│   │   │   ├── ht_02_21.psd
│   │   │   ├── index_03.gif
│   │   │   ├── index_06.gif
│   │   │   ├── index_09.gif
│   │   │   ├── index_12.gif
│   │   │   ├── index_13.gif
│   │   │   ├── index_14.gif
│   │   │   ├── index_15.gif
│   │   │   ├── index_16.gif
│   │   │   ├── index_17.gif
│   │   │   ├── index_19.gif
│   │   │   ├── index_23.gif
│   │   │   ├── index_25.gif
│   │   │   ├── index_25.png
│   │   │   ├── index_26.gif
│   │   │   ├── index_27.gif
│   │   │   ├── index_28.gif
│   │   │   ├── index_39.gif
│   │   │   ├── index_42.gif
│   │   │   ├── index_47.gif
│   │   │   ├── index_49.gif
│   │   │   ├── index_51.gif
│   │   │   ├── load.gif
│   │   │   ├── qrcode.png
│   │   │   ├── rz_15.gif
│   │   │   ├── rz_17.gif
│   │   │   ├── tu_50.gif
│   │   │   ├── tu_50.psd
│   │   │   ├── zc_03.gif
│   │   │   ├── zh01_03.gif
│   │   │   ├── zh01_07.gif
│   │   │   ├── zh03_03.gif
│   │   │   ├── zh03_07.gif
│   │   │   ├── zh03_09.gif
│   │   │   ├── zh03_11.gif
│   │   │   └── zh_03.gif
│   │   ├── style_ht.css
│   │   └── style_index.css
│   ├── index.jsp
│   ├── js
│   │   ├── jquery.js
│   │   └── public.js
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── time.jsp
│   ├── upload
│   │   ├── 201704201340260341.jpg
│   │   ├── 201704201342270110.jpg
│   │   ├── 201704201359330922.jpg
│   │   ├── 201704201400560420.jpg
│   │   └── 201704201401400092.jpg
│   └── WEB-INF
│   ├── classes
│   │   ├── applicationContext-common.xml
│   │   ├── com
│   │   │   └── lyq
│   │   │   ├── action
│   │   │   │   ├── BaseAction.class
│   │   │   │   ├── BaseAction-logon-validation.xml
│   │   │   │   ├── IndexAction.class
│   │   │   │   ├── interceptor
│   │   │   │   │   ├── CustomerLoginInteceptor.class
│   │   │   │   │   └── UserLoginInterceptor.class
│   │   │   │   ├── order
│   │   │   │   │   ├── CartAction.class
│   │   │   │   │   ├── OrderAction.class
│   │   │   │   │   └── OrderAction-order_confirm-validation.xml
│   │   │   │   ├── product
│   │   │   │   │   ├── ProductAction.class
│   │   │   │   │   ├── ProductCategoryAction-category_save-validation.xml
│   │   │   │   │   └── ProductCategoryAction.class
│   │   │   │   ├── struts-admin.xml
│   │   │   │   ├── struts-default.xml
│   │   │   │   ├── struts-front.xml
│   │   │   │   └── user
│   │   │   │   ├── CustomerAction.class
│   │   │   │   ├── CustomerAction-customer_save-validation.xml
│   │   │   │   └── UserAction.class
│   │   │   ├── dao
│   │   │   │   ├── BaseDao.class
│   │   │   │   ├── DaoSupport.class
│   │   │   │   ├── DaoSupportTest.class
│   │   │   │   ├── order
│   │   │   │   │   ├── OrderDao.class
│   │   │   │   │   └── OrderDaoImpl.class
│   │   │   │   ├── product
│   │   │   │   │   ├── ProductCategoryDao.class
│   │   │   │   │   ├── ProductCategoryDaoImpl.class
│   │   │   │   │   ├── ProductDao.class
│   │   │   │   │   ├── ProductDaoImpl.class
│   │   │   │   │   ├── UploadFileDao.class
│   │   │   │   │   └── UploadFileDaoImpl.class
│   │   │   │   └── user
│   │   │   │   ├── CustomerDao.class
│   │   │   │   ├── CustomerDaoImpl.class
│   │   │   │   ├── UserDao.class
│   │   │   │   └── UserDaoImpl.class
│   │   │   ├── model
│   │   │   │   ├── order
│   │   │   │   │   ├── Order.class
│   │   │   │   │   ├── Order.hbm.xml
│   │   │   │   │   ├── OrderItem.class
│   │   │   │   │   └── OrderItem.hbm.xml
│   │   │   │   ├── OrderState$1.class
│   │   │   │   ├── OrderState$2.class
│   │   │   │   ├── OrderState$3.class
│   │   │   │   ├── OrderState.class
│   │   │   │   ├── PageModel.class
│   │   │   │   ├── PaymentWay$1.class
│   │   │   │   ├── PaymentWay$2.class
│   │   │   │   ├── PaymentWay$3.class
│   │   │   │   ├── PaymentWay$4.class
│   │   │   │   ├── PaymentWay.class
│   │   │   │   ├── product
│   │   │   │   │   ├── ProductCategory.class
│   │   │   │   │   ├── ProductCategory.hbm.xml
│   │   │   │   │   ├── ProductInfo.class
│   │   │   │   │   ├── ProductInfo.hbm.xml
│   │   │   │   │   ├── UploadFile.class
│   │   │   │   │   └── UploadFile.hbm.xml
│   │   │   │   ├── Sex$1.class
│   │   │   │   ├── Sex$2.class
│   │   │   │   ├── Sex$3.class
│   │   │   │   ├── Sex.class
│   │   │   │   └── user
│   │   │   │   ├── Customer.class
│   │   │   │   ├── Customer.hbm.xml
│   │   │   │   ├── User.class
│   │   │   │   └── User.hbm.xml
│   │   │   └── util
│   │   │   ├── AppException.class
│   │   │   ├── GenericsUtils.class
│   │   │   ├── hibernate
│   │   │   │   ├── EnumType.class
│   │   │   │   ├── HibernateUtils.class
│   │   │   │   ├── OrderStateType.class
│   │   │   │   ├── PaymentWayType.class
│   │   │   │   └── SexType.class
│   │   │   ├── OrderStateConversion.class
│   │   │   ├── PaymentWayConversion.class
│   │   │   ├── SexConversion.class
│   │   │   └── StringUitl.class
│   │   ├── hibernate.cfg.xml
│   │   ├── log4j.properties
│   │   ├── struts.properties
│   │   ├── struts.xml
│   │   └── xwork-conversion.properties
│   ├── lib
│   │   ├── antlr-2.7.6.jar
│   │   ├── aopalliance-1.0.jar
│   │   ├── asm-5.2.jar
│   │   ├── asm-commons-5.2.jar
│   │   ├── asm-tree-5.2.jar
│   │   ├── bsh-2.0b4.jar
│   │   ├── classworlds-1.1.jar
│   │   ├── commons-beanutils-1.9.2.jar
│   │   ├── commons-collections-3.2.2.jar
│   │   ├── commons-digester-2.1.jar
│   │   ├── commons-fileupload-1.3.3.jar
│   │   ├── commons-io-2.5.jar
│   │   ├── commons-lang-2.4.jar
│   │   ├── commons-lang3-3.6.jar
│   │   ├── commons-logging-1.1.3.jar
│   │   ├── dom4j-1.6.1.jar
│   │   ├── dwr-1.1.1.jar
│   │   ├── ezmorph-1.0.6.jar
│   │   ├── freemarker-2.3.23.jar
│   │   ├── google-collections-1.0.jar
│   │   ├── google-gxp-0.2.4-beta.jar
│   │   ├── hamcrest-core-1.3.jar
│   │   ├── hibernate-commons-annotations-5.0.1.Final.jar
│   │   ├── hibernate-core-4.1.8.Final.jar
│   │   ├── hibernate-jpa-2.0-api-1.0.1.Final.jar
│   │   ├── jackson-annotations-2.6.0.jar
│   │   ├── jackson-core-2.6.1.jar
│   │   ├── jackson-databind-2.6.1.jar
│   │   ├── javassist-3.20.0-GA.jar
│   │   ├── jboss-logging-3.1.0.GA.jar
│   │   ├── jcl-over-slf4j-1.7.6.jar
│   │   ├── jcommander-1.12.jar
│   │   ├── json-lib-2.3-jdk15.jar
│   │   ├── jta.jar
│   │   ├── juli-6.0.18.jar
│   │   ├── junit-4.5.jar
│   │   ├── log4j-api-2.8.2.jar
│   │   ├── log4j-api-2.9.1.jar
│   │   ├── log4j-core-2.9.1.jar
│   │   ├── mysql-connector-java-5.1.20-bin.jar
│   │   ├── ognl-3.1.15.jar
│   │   ├── org.apache.felix.framework-4.0.3.jar
│   │   ├── org.apache.felix.main-4.0.3.jar
│   │   ├── org.apache.felix.shell-1.4.3.jar
│   │   ├── org.apache.felix.shell.tui-1.4.1.jar
│   │   ├── org.osgi.compendium-4.0.0.jar
│   │   ├── org.osgi.core-4.1.0.jar
│   │   ├── oval-1.31.jar
│   │   ├── plexus-container-default-1.0-alpha-10.jar
│   │   ├── plexus-utils-1.2.jar
│   │   ├── sitemesh-2.4.2.jar
│   │   ├── slf4j-api-1.7.12.jar
│   │   ├── snakeyaml-1.6.jar
│   │   ├── spring-aop-4.1.6.RELEASE.jar
│   │   ├── spring-beans-4.1.6.RELEASE.jar
│   │   ├── spring-context-4.1.6.RELEASE.jar
│   │   ├── spring-core-4.1.6.RELEASE.jar
│   │   ├── spring-expression-4.1.6.RELEASE.jar
│   │   ├── spring-jdbc-4.1.6.RELEASE.jar
│   │   ├── spring-orm-4.1.6.RELEASE.jar
│   │   ├── spring-test-4.1.6.RELEASE.jar
│   │   ├── spring-tx-4.1.6.RELEASE.jar
│   │   ├── spring-web-4.1.6.RELEASE.jar
│   │   ├── struts2-bean-validation-plugin-2.5.13.jar
│   │   ├── struts2-cdi-plugin-2.5.13.jar
│   │   ├── struts2-config-browser-plugin-2.5.13.jar
│   │   ├── struts2-convention-plugin-2.5.13.jar
│   │   ├── struts2-core-2.5.13.jar
│   │   ├── struts2-dwr-plugin-2.5.13.jar
│   │   ├── struts2-embeddedjsp-plugin-2.5.13.jar
│   │   ├── struts2-jasperreports-plugin-2.5.13.jar
│   │   ├── struts2-javatemplates-plugin-2.5.13.jar
│   │   ├── struts2-jfreechart-plugin-2.5.13.jar
│   │   ├── struts2-json-plugin-2.5.13.jar
│   │   ├── struts2-junit-plugin-2.5.13.jar
│   │   ├── struts2-oval-plugin-2.5.13.jar
│   │   ├── struts2-pell-multipart-plugin-2.5.13.jar
│   │   ├── struts2-plexus-plugin-2.5.13.jar
│   │   ├── struts2-sitegraph-plugin-2.5.13.jar
│   │   ├── struts2-sitemesh-plugin-2.5.13.jar
│   │   ├── struts2-spring-plugin-2.5.13.jar
│   │   ├── struts2-testng-plugin-2.5.13.jar
│   │   ├── struts2-tiles-plugin-2.5.13.jar
│   │   ├── tiles-api-3.0.7.jar
│   │   ├── tiles-autotag-core-runtime-1.2.jar
│   │   ├── tiles-core-3.0.7.jar
│   │   ├── tiles-el-3.0.7.jar
│   │   ├── tiles-freemarker-3.0.7.jar
│   │   ├── tiles-jsp-3.0.7.jar
│   │   ├── tiles-ognl-3.0.7.jar
│   │   ├── tiles-request-api-1.0.6.jar
│   │   ├── tiles-request-freemarker-1.0.6.jar
│   │   ├── tiles-request-jsp-1.0.6.jar
│   │   ├── tiles-request-servlet-1.0.6.jar
│   │   ├── tiles-servlet-3.0.7.jar
│   │   ├── tiles-template-3.0.7.jar
│   │   ├── validation-api-1.1.0.Final.jar
│   │   ├── velocity-1.7.jar
│   │   ├── velocity-tools-2.0.jar
│   │   ├── xmlpull-1.1.3.1.jar
│   │   ├── xpp3_min-1.1.4c.jar
│   │   └── xstream-1.4.10.jar
│   ├── pages
│   │   ├── admin
│   │   │   ├── left.jsp
│   │   │   ├── main.jsp
│   │   │   ├── order
│   │   │   │   ├── order_list.jsp
│   │   │   │   ├── order_query.jsp
│   │   │   │   ├── order_select.jsp
│   │   │   │   └── order_update_success.jsp
│   │   │   ├── product
│   │   │   │   ├── category_add.jsp
│   │   │   │   ├── category_edit.jsp
│   │   │   │   ├── category_list.jsp
│   │   │   │   ├── product_add.jsp
│   │   │   │   ├── product_edit.jsp
│   │   │   │   └── product_list.jsp
│   │   │   ├── right.jsp
│   │   │   ├── top.jsp
│   │   │   └── user
│   │   │   └── user_login.jsp
│   │   ├── cart
│   │   │   └── cart_list.jsp
│   │   ├── common
│   │   │   ├── common_admin.jsp
│   │   │   ├── common-footer.jsp
│   │   │   ├── common.jsp
│   │   │   ├── head.jsp
│   │   │   ├── page.jsp
│   │   │   └── show_error.jsp
│   │   ├── index.jsp
│   │   ├── order
│   │   │   ├── order_add.jsp
│   │   │   ├── order_confirm.jsp
│   │   │   ├── order_error.jsp
│   │   │   ├── order_list.jsp
│   │   │   └── order_success.jsp
│   │   ├── product
│   │   │   ├── product_click_list.jsp
│   │   │   ├── product_find_list.jsp
│   │   │   ├── product_list.jsp
│   │   │   └── product_select.jsp
│   │   ├── time.jsp
│   │   └── user
│   │   ├── customer_login.jsp
│   │   └── customer_reg.jsp
│   └── web.xml
└── 数据库
└── db_shop.sql

841 directories, 4117 files

标签:

实例下载地址

JavaWeb项目开发全程实录明日科技源码.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警