实例介绍
基于java的bbs系统,使用mysql数据库,带sql文件可以直接导入使用。
【实例截图】
【核心代码】
bbs
├── bbs
│ ├── WebRoot
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── META-INF
│ │ │ │ │ └── MANIFEST.MF
│ │ │ │ ├── beans.xml
│ │ │ │ ├── cc
│ │ │ │ │ └── javaee
│ │ │ │ │ └── bbs
│ │ │ │ │ ├── controller
│ │ │ │ │ │ ├── admin
│ │ │ │ │ │ │ ├── AdminBankuaiController.class
│ │ │ │ │ │ │ ├── AdminCommonController.class
│ │ │ │ │ │ │ ├── AdminIndexController.class
│ │ │ │ │ │ │ ├── AdminInfoController.class
│ │ │ │ │ │ │ ├── AdminInnerLinkController.class
│ │ │ │ │ │ │ ├── AdminLinkController.class
│ │ │ │ │ │ │ ├── AdminPostContriller.class
│ │ │ │ │ │ │ ├── AdminStopIpController.class
│ │ │ │ │ │ │ ├── AdminUserContriller.class
│ │ │ │ │ │ │ └── AdminZhutiController.class
│ │ │ │ │ │ ├── index
│ │ │ │ │ │ │ ├── IndexBankuaiController.class
│ │ │ │ │ │ │ ├── IndexController.class
│ │ │ │ │ │ │ ├── IndexTieziController.class
│ │ │ │ │ │ │ ├── LoginController.class
│ │ │ │ │ │ │ ├── MemberContriller.class
│ │ │ │ │ │ │ └── ZhucController.class
│ │ │ │ │ │ ├── moderator
│ │ │ │ │ │ │ └── ModeratorCommonController.class
│ │ │ │ │ │ ├── publics
│ │ │ │ │ │ │ ├── CommonController.class
│ │ │ │ │ │ │ ├── DownloadController.class
│ │ │ │ │ │ │ ├── TopageController.class
│ │ │ │ │ │ │ ├── UploadController.class
│ │ │ │ │ │ │ ├── Uploader.class
│ │ │ │ │ │ │ └── YanzhengmaController.class
│ │ │ │ │ │ └── user
│ │ │ │ │ │ ├── JifenContriller.class
│ │ │ │ │ │ ├── MessageController.class
│ │ │ │ │ │ ├── TieziContriller.class
│ │ │ │ │ │ ├── UserContriller.class
│ │ │ │ │ │ └── UserLiuyanContriller.class
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── BankuaiDao.class
│ │ │ │ │ │ ├── CommonDao.class
│ │ │ │ │ │ ├── GroupDao.class
│ │ │ │ │ │ ├── HuifuDao.class
│ │ │ │ │ │ ├── InfoDao.class
│ │ │ │ │ │ ├── InnerLinkDao.class
│ │ │ │ │ │ ├── JifenDao.class
│ │ │ │ │ │ ├── JifenGroupDao.class
│ │ │ │ │ │ ├── LinkDao.class
│ │ │ │ │ │ ├── MessageDao.class
│ │ │ │ │ │ ├── PicDao.class
│ │ │ │ │ │ ├── StopIpDao.class
│ │ │ │ │ │ ├── TieziBigDao.class
│ │ │ │ │ │ ├── TieziDao.class
│ │ │ │ │ │ ├── UserDao.class
│ │ │ │ │ │ ├── UserLiuyanDao.class
│ │ │ │ │ │ └── ZhutiDao.class
│ │ │ │ │ ├── filter
│ │ │ │ │ │ └── CommonFilter.class
│ │ │ │ │ ├── model
│ │ │ │ │ │ ├── Bankuai.class
│ │ │ │ │ │ ├── Group.class
│ │ │ │ │ │ ├── GroupUser.class
│ │ │ │ │ │ ├── Huifu.class
│ │ │ │ │ │ ├── Info.class
│ │ │ │ │ │ ├── InnerLink.class
│ │ │ │ │ │ ├── Jifen.class
│ │ │ │ │ │ ├── JifenGroup.class
│ │ │ │ │ │ ├── Link.class
│ │ │ │ │ │ ├── Message.class
│ │ │ │ │ │ ├── PageBean.class
│ │ │ │ │ │ ├── Pic.class
│ │ │ │ │ │ ├── StopIp.class
│ │ │ │ │ │ ├── Tiezi.class
│ │ │ │ │ │ ├── TieziBig.class
│ │ │ │ │ │ ├── User.class
│ │ │ │ │ │ ├── UserLiuyan.class
│ │ │ │ │ │ ├── Zhuti.class
│ │ │ │ │ │ └── Ztree.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── BankuaiService.class
│ │ │ │ │ │ ├── CommonService.class
│ │ │ │ │ │ ├── GroupService.class
│ │ │ │ │ │ ├── HuifuService.class
│ │ │ │ │ │ ├── InfoService.class
│ │ │ │ │ │ ├── InnerLinkService.class
│ │ │ │ │ │ ├── JifenGroupService.class
│ │ │ │ │ │ ├── JifenService.class
│ │ │ │ │ │ ├── LinkService.class
│ │ │ │ │ │ ├── MessageService.class
│ │ │ │ │ │ ├── PicService.class
│ │ │ │ │ │ ├── StopIpService.class
│ │ │ │ │ │ ├── TieziService.class
│ │ │ │ │ │ ├── UserLiuyanService.class
│ │ │ │ │ │ ├── UserService.class
│ │ │ │ │ │ └── ZhutiService.class
│ │ │ │ │ └── tool
│ │ │ │ │ ├── Base64.class
│ │ │ │ │ ├── ConfigPropertiesUtil.class
│ │ │ │ │ ├── JAVAEEThread.class
│ │ │ │ │ ├── Pinyin4j.class
│ │ │ │ │ ├── PublicStatic.class
│ │ │ │ │ ├── Tool.class
│ │ │ │ │ ├── ToolIp.class
│ │ │ │ │ ├── ToolSpring.class
│ │ │ │ │ ├── VerifyCodeUtils.class
│ │ │ │ │ └── thread
│ │ │ │ │ └── IndexThread.class
│ │ │ │ ├── config.properties
│ │ │ │ ├── log4j.properties
│ │ │ │ ├── mybatis
│ │ │ │ │ └── sqlMap
│ │ │ │ │ ├── BankuaiMapper.xml
│ │ │ │ │ ├── CommonMapper.xml
│ │ │ │ │ ├── GroupMapper.xml
│ │ │ │ │ ├── HuifuMapper.xml
│ │ │ │ │ ├── InfoMapper.xml
│ │ │ │ │ ├── InnerLinkMapper.xml
│ │ │ │ │ ├── JifenGroupMapper.xml
│ │ │ │ │ ├── JifenMapper.xml
│ │ │ │ │ ├── LinkMapper.xml
│ │ │ │ │ ├── MessageMapper.xml
│ │ │ │ │ ├── PicMapper.xml
│ │ │ │ │ ├── StopIpMapper.xml
│ │ │ │ │ ├── TieziBigMapper.xml
│ │ │ │ │ ├── TieziMapper.xml
│ │ │ │ │ ├── UserLiuyanMapper.xml
│ │ │ │ │ ├── UserMapper.xml
│ │ │ │ │ └── ZhutiMapper.xml
│ │ │ │ ├── springmvc-servlet.xml
│ │ │ │ └── sqlMapGenernator.xml
│ │ │ ├── inc
│ │ │ │ ├── commonfoot.jsp
│ │ │ │ ├── foot.jsp
│ │ │ │ ├── ipquanxian.jsp
│ │ │ │ ├── mobilefoot.jsp
│ │ │ │ ├── mobilepage.jsp
│ │ │ │ ├── mobilequanxian.jsp
│ │ │ │ ├── mobiletop.jsp
│ │ │ │ ├── page.jsp
│ │ │ │ ├── quanxian.jsp
│ │ │ │ ├── taglibs.jsp
│ │ │ │ └── top.jsp
│ │ │ ├── jsp
│ │ │ │ ├── admin
│ │ │ │ │ ├── bankuai
│ │ │ │ │ │ ├── index.jsp
│ │ │ │ │ │ └── updateoradd.jsp
│ │ │ │ │ ├── book.jsp
│ │ │ │ │ ├── index.jsp
│ │ │ │ │ ├── info.jsp
│ │ │ │ │ ├── infobak.jsp
│ │ │ │ │ ├── innerlink
│ │ │ │ │ │ ├── index.jsp
│ │ │ │ │ │ └── updateoradd.jsp
│ │ │ │ │ ├── link
│ │ │ │ │ │ ├── index.jsp
│ │ │ │ │ │ └── updateoradd.jsp
│ │ │ │ │ ├── post
│ │ │ │ │ │ └── index.jsp
│ │ │ │ │ ├── stopip
│ │ │ │ │ │ ├── index.jsp
│ │ │ │ │ │ └── updateoradd.jsp
│ │ │ │ │ ├── user
│ │ │ │ │ │ ├── index.jsp
│ │ │ │ │ │ └── option.jsp
│ │ │ │ │ └── zhuti
│ │ │ │ │ ├── index.jsp
│ │ │ │ │ └── updateoradd.jsp
│ │ │ │ ├── index
│ │ │ │ │ ├── bankuai.jsp
│ │ │ │ │ ├── index.jsp
│ │ │ │ │ ├── login.jsp
│ │ │ │ │ ├── member
│ │ │ │ │ │ ├── xinxi-liuyan.jsp
│ │ │ │ │ │ ├── xinxi-top.jsp
│ │ │ │ │ │ ├── xinxi-zhuti.jsp
│ │ │ │ │ │ └── xinxi-ziliao.jsp
│ │ │ │ │ ├── neirong.jsp
│ │ │ │ │ ├── user
│ │ │ │ │ │ ├── addhuifu.jsp
│ │ │ │ │ │ ├── fatie.jsp
│ │ │ │ │ │ ├── messageinfo.jsp
│ │ │ │ │ │ ├── updatefatie.jsp
│ │ │ │ │ │ ├── user-jifen.jsp
│ │ │ │ │ │ ├── user-message.jsp
│ │ │ │ │ │ ├── user-pwd.jsp
│ │ │ │ │ │ ├── user-tiezi.jsp
│ │ │ │ │ │ ├── user-ziliao.jsp
│ │ │ │ │ │ └── ztreeyidong.jsp
│ │ │ │ │ └── zhuc.jsp
│ │ │ │ └── mobile
│ │ │ │ ├── bankuai.jsp
│ │ │ │ ├── index.jsp
│ │ │ │ ├── login.jsp
│ │ │ │ ├── member
│ │ │ │ │ └── xinxi-ziliao.jsp
│ │ │ │ ├── neirong.jsp
│ │ │ │ ├── user
│ │ │ │ │ ├── addhuifu.jsp
│ │ │ │ │ ├── fatie.jsp
│ │ │ │ │ ├── user-jifen.jsp
│ │ │ │ │ ├── user-message.jsp
│ │ │ │ │ ├── user-tiezi.jsp
│ │ │ │ │ ├── user-ziliao.jsp
│ │ │ │ │ └── user.jsp
│ │ │ │ └── zhuc.jsp
│ │ │ ├── lib
│ │ │ │ ├── aspectjweaver-1.6.12.jar
│ │ │ │ ├── com.springsource.net.sf.cglib-2.2.0.jar
│ │ │ │ ├── com.springsource.org.aopalliance-1.0.0.jar
│ │ │ │ ├── com.springsource.org.apache.commons.logging-1.1.1.jar
│ │ │ │ ├── commons-codec-1.9.jar
│ │ │ │ ├── commons-fileupload-1.3.1.jar
│ │ │ │ ├── commons-io-2.4.jar
│ │ │ │ ├── dom4j-1.6.1.jar
│ │ │ │ ├── druid-1.0.20.jar
│ │ │ │ ├── fastjson-1.1.6.jar
│ │ │ │ ├── gson-2.2.4.jar
│ │ │ │ ├── jackson-core-asl-1.9.13.jar
│ │ │ │ ├── jackson-mapper-asl-1.9.13.jar
│ │ │ │ ├── jersey-client-1.2.jar
│ │ │ │ ├── jsf-api.jar
│ │ │ │ ├── jsf-impl.jar
│ │ │ │ ├── json.jar
│ │ │ │ ├── jstl-1.2.jar
│ │ │ │ ├── log4j.jar
│ │ │ │ ├── mybatis-3.1.1.jar
│ │ │ │ ├── mybatis-spring-1.1.1.jar
│ │ │ │ ├── mysql-connector-java-5.1.25-bin.jar
│ │ │ │ ├── org.springframework.aop-3.0.2.RELEASE.jar
│ │ │ │ ├── org.springframework.asm-3.0.2.RELEASE.jar
│ │ │ │ ├── org.springframework.beans-3.0.2.RELEASE.jar
│ │ │ │ ├── org.springframework.context-3.0.2.RELEASE.jar
│ │ │ │ ├── org.springframework.context.support-3.0.2.RELEASE.jar
│ │ │ │ ├── org.springframework.core-3.0.2.RELEASE.jar
│ │ │ │ ├── org.springframework.expression-3.0.2.RELEASE.jar
│ │ │ │ ├── org.springframework.jdbc-3.1.0.RELEASE.jar
│ │ │ │ ├── org.springframework.transaction-3.0.0.RELEASE.jar
│ │ │ │ ├── org.springframework.web-3.0.2.RELEASE.jar
│ │ │ │ ├── org.springframework.web.servlet-3.0.2.RELEASE.jar
│ │ │ │ ├── pinyin4j-2.5.0.jar
│ │ │ │ ├── standard-1.1.2.jar
│ │ │ │ └── ueditor-1.1.2.jar
│ │ │ └── web.xml
│ │ ├── admin
│ │ │ ├── css
│ │ │ │ ├── admin.css
│ │ │ │ └── pintuer.css
│ │ │ ├── images
│ │ │ │ ├── 11.jpg
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── passcode.jpg
│ │ │ │ ├── tmbg-white.png
│ │ │ │ └── y.jpg
│ │ │ └── js
│ │ │ ├── jquery.js
│ │ │ └── pintuer.js
│ │ ├── bbs.sql
│ │ ├── css
│ │ │ ├── css
│ │ │ │ ├── style_common.css
│ │ │ │ ├── style_home_user.css
│ │ │ │ ├── style_home_usercp.css
│ │ │ │ ├── style_index.css
│ │ │ │ ├── style_javaee.css
│ │ │ │ └── style_viewthread.css
│ │ │ ├── img
│ │ │ │ ├── banner
│ │ │ │ │ ├── 01.png
│ │ │ │ │ ├── b_1.jpg
│ │ │ │ │ ├── b_10.jpg
│ │ │ │ │ ├── b_2.jpg
│ │ │ │ │ ├── b_3.jpg
│ │ │ │ │ ├── b_4.jpg
│ │ │ │ │ ├── b_5.jpg
│ │ │ │ │ ├── b_6.jpg
│ │ │ │ │ ├── b_7.jpg
│ │ │ │ │ ├── b_8.jpg
│ │ │ │ │ ├── b_9.jpg
│ │ │ │ │ ├── common_2_banner.jpg
│ │ │ │ │ └── def.gif
│ │ │ │ ├── demo
│ │ │ │ │ ├── 1.jpg
│ │ │ │ │ ├── 1.png
│ │ │ │ │ ├── 124.jpg
│ │ │ │ │ ├── 125.jpg
│ │ │ │ │ ├── 126.jpg
│ │ │ │ │ ├── 127.jpg
│ │ │ │ │ ├── 128.jpg
│ │ │ │ │ ├── 2.png
│ │ │ │ │ ├── 3.png
│ │ │ │ │ ├── 4.jpg
│ │ │ │ │ ├── 5.png
│ │ │ │ │ ├── jinmao1.jpg
│ │ │ │ │ ├── jinmao2.jpeg
│ │ │ │ │ ├── jinmao2.jpg
│ │ │ │ │ ├── jinmao3.jpg
│ │ │ │ │ ├── jinmao4.jpg
│ │ │ │ │ └── jinmao5.jpg
│ │ │ │ ├── icon
│ │ │ │ │ ├── activity_s.png
│ │ │ │ │ ├── agree.gif
│ │ │ │ │ ├── bg_arrow_left.png
│ │ │ │ │ ├── btn_loop.png
│ │ │ │ │ ├── check.png
│ │ │ │ │ ├── cls.gif
│ │ │ │ │ ├── down_arrow.png
│ │ │ │ │ ├── favorite.png
│ │ │ │ │ ├── icon16.png
│ │ │ │ │ ├── icon17.png
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image_s.gif
│ │ │ │ │ ├── j1.png
│ │ │ │ │ ├── j2.png
│ │ │ │ │ ├── j3.png
│ │ │ │ │ ├── jing.gif
│ │ │ │ │ ├── jing_pic.png
│ │ │ │ │ ├── login_qq.png
│ │ │ │ │ ├── login_sina.png
│ │ │ │ │ ├── nv_a.png
│ │ │ │ │ ├── page.png
│ │ │ │ │ ├── pages.png
│ │ │ │ │ ├── pollsmall.gif
│ │ │ │ │ ├── post.png
│ │ │ │ │ ├── qmenu.png
│ │ │ │ │ ├── rec_add.png
│ │ │ │ │ ├── rec_subtract.png
│ │ │ │ │ ├── refresh.png
│ │ │ │ │ ├── right_arrow.png
│ │ │ │ │ ├── scrolltop.png
│ │ │ │ │ ├── skin.png
│ │ │ │ │ ├── snsicon_n.png
│ │ │ │ │ ├── switch_width.png
│ │ │ │ │ ├── taotie.png
│ │ │ │ │ ├── tip.png
│ │ │ │ │ ├── toolbar.png
│ │ │ │ │ ├── up_arrow.png
│ │ │ │ │ ├── view.png
│ │ │ │ │ ├── vlineb.png
│ │ │ │ │ ├── white_d_arrow.png
│ │ │ │ │ ├── zd.gif
│ │ │ │ │ ├── zd_pic.png
│ │ │ │ │ └── zhuanbo.png
│ │ │ │ ├── logo.png
│ │ │ │ └── mail_inactive.png
│ │ │ └── style.css
│ │ ├── error.jsp
│ │ ├── index.do
│ │ ├── public
│ │ │ ├── My97DatePicker
│ │ │ │ ├── WdatePicker.js
│ │ │ │ ├── calendar.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ └── skin
│ │ │ │ ├── WdatePicker.css
│ │ │ │ ├── YcloudRed
│ │ │ │ │ ├── bg.gif
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── qs.jpg
│ │ │ │ ├── blue
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── btnbg.jpg
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ ├── down.jpg
│ │ │ │ │ ├── left.gif
│ │ │ │ │ ├── navLeft.gif
│ │ │ │ │ ├── navRight.gif
│ │ │ │ │ ├── qs.jpg
│ │ │ │ │ ├── right.gif
│ │ │ │ │ └── up.jpg
│ │ │ │ ├── datePicker.gif
│ │ │ │ ├── default
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ └── whyGreen
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── datepicker.css
│ │ │ │ └── img.gif
│ │ │ ├── baiduueditor
│ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ │ ├── undo.png
│ │ │ │ │ │ │ └── undoH.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
│ │ │ │ ├── index.html
│ │ │ │ ├── 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.png
│ │ │ │ │ │ ├── arrow_down.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
│ │ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ │ ├── shCore.js
│ │ │ │ │ │ └── shCoreDefault.css
│ │ │ │ │ ├── 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-more.js
│ │ │ │ │ │ ├── highcharts-more.src.js
│ │ │ │ │ │ ├── highcharts.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
│ │ │ │ │ ├── video-js
│ │ │ │ │ │ ├── font
│ │ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ │ ├── video-js.css
│ │ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ │ ├── video-js.swf
│ │ │ │ │ │ ├── video.dev.js
│ │ │ │ │ │ └── video.js
│ │ │ │ │ ├── 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.huifu.js
│ │ │ │ ├── ueditor.config.js
│ │ │ │ ├── ueditor.config.js.bak
│ │ │ │ ├── ueditor.parse.js
│ │ │ │ └── ueditor.parse.min.js
│ │ │ ├── ckplayer
│ │ │ │ ├── 1.mp4
│ │ │ │ ├── ckplayer
│ │ │ │ │ ├── baiduckplayer.js
│ │ │ │ │ ├── ckplayer.js
│ │ │ │ │ ├── ckplayer.swf
│ │ │ │ │ ├── language.xml
│ │ │ │ │ └── style.swf
│ │ │ │ ├── demo1.htm
│ │ │ │ └── demo3.htm
│ │ │ ├── css
│ │ │ │ └── tubiao.css
│ │ │ ├── img
│ │ │ │ ├── member
│ │ │ │ │ ├── 1.png
│ │ │ │ │ ├── 2.png
│ │ │ │ │ └── 3.png
│ │ │ │ └── public
│ │ │ │ └── duihao.png
│ │ │ ├── js
│ │ │ │ ├── ajaxfileupload.js
│ │ │ │ ├── index
│ │ │ │ │ ├── common.js
│ │ │ │ │ └── forum_slide.js
│ │ │ │ ├── javaee.js
│ │ │ │ ├── jquery-1.8.2.min.js
│ │ │ │ └── pace.min.js
│ │ │ ├── layer
│ │ │ │ ├── layer.js
│ │ │ │ ├── mobile
│ │ │ │ │ ├── layer.js
│ │ │ │ │ └── need
│ │ │ │ │ └── layer.css
│ │ │ │ └── skin
│ │ │ │ └── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ ├── mobile
│ │ │ │ ├── bankuai.jsp
│ │ │ │ ├── css
│ │ │ │ │ └── style.css
│ │ │ │ ├── fatie.jsp
│ │ │ │ ├── images
│ │ │ │ │ ├── collapsed_no.png
│ │ │ │ │ ├── collapsed_yes.png
│ │ │ │ │ ├── common_266_icon.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── icon_back.png
│ │ │ │ │ ├── icon_num.png
│ │ │ │ │ ├── icon_top.png
│ │ │ │ │ ├── s_cbl.png
│ │ │ │ │ └── s_user.png
│ │ │ │ ├── inc
│ │ │ │ │ ├── mobilefoot.jsp
│ │ │ │ │ └── mobiletop.jsp
│ │ │ │ ├── index.jsp
│ │ │ │ ├── js
│ │ │ │ │ └── jquery-1.9.1.min.js
│ │ │ │ ├── load.jsp
│ │ │ │ ├── login.jsp
│ │ │ │ ├── neirong.jsp
│ │ │ │ ├── user-zhuti.jsp
│ │ │ │ ├── user-ziliao.jsp
│ │ │ │ └── user.jsp
│ │ │ └── ztree
│ │ │ ├── css
│ │ │ │ ├── awesomeStyle
│ │ │ │ │ ├── awesome.css
│ │ │ │ │ ├── awesome.less
│ │ │ │ │ ├── fa.less
│ │ │ │ │ └── img
│ │ │ │ │ └── loading.gif
│ │ │ │ ├── metroStyle
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── line_conn.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── metro.gif
│ │ │ │ │ │ └── metro.png
│ │ │ │ │ └── metroStyle.css
│ │ │ │ └── zTreeStyle
│ │ │ │ ├── img
│ │ │ │ │ ├── diy
│ │ │ │ │ │ ├── 1_close.png
│ │ │ │ │ │ ├── 1_open.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ └── 9.png
│ │ │ │ │ ├── line_conn.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── zTreeStandard.gif
│ │ │ │ │ └── zTreeStandard.png
│ │ │ │ └── zTreeStyle.css
│ │ │ └── js
│ │ │ ├── jquery-1.4.4.min.js
│ │ │ ├── jquery.ztree.all.js
│ │ │ ├── jquery.ztree.all.min.js
│ │ │ ├── jquery.ztree.core.js
│ │ │ ├── jquery.ztree.core.min.js
│ │ │ ├── jquery.ztree.excheck.js
│ │ │ ├── jquery.ztree.excheck.min.js
│ │ │ ├── jquery.ztree.exedit.js
│ │ │ ├── jquery.ztree.exedit.min.js
│ │ │ ├── jquery.ztree.exhide.js
│ │ │ └── jquery.ztree.exhide.min.js
│ │ ├── robots.txt
│ │ ├── static
│ │ │ └── image
│ │ │ ├── common
│ │ │ │ ├── access_disallow.gif
│ │ │ │ ├── activitysmall.gif
│ │ │ │ ├── ad.gif
│ │ │ │ ├── addbuddy.gif
│ │ │ │ ├── app.png
│ │ │ │ ├── arr_w.gif
│ │ │ │ ├── arrow.gif
│ │ │ │ ├── arrow_down.gif
│ │ │ │ ├── arrow_top.gif
│ │ │ │ ├── arrow_up.png
│ │ │ │ ├── arrow_up_hover.png
│ │ │ │ ├── arrwd.gif
│ │ │ │ ├── arw.gif
│ │ │ │ ├── attl_icon.png
│ │ │ │ ├── bg_usergroup.png
│ │ │ │ ├── bg_waterfall.png
│ │ │ │ ├── bigimg.png
│ │ │ │ ├── cancelbutton.gif
│ │ │ │ ├── card_btn.png
│ │ │ │ ├── category_lbg.png
│ │ │ │ ├── check_error.gif
│ │ │ │ ├── check_right.gif
│ │ │ │ ├── clck.gif
│ │ │ │ ├── clock.gif
│ │ │ │ ├── close-s.png
│ │ │ │ ├── close.gif
│ │ │ │ ├── closed.png
│ │ │ │ ├── cls.gif
│ │ │ │ ├── cmmnt.gif
│ │ │ │ ├── cmt_ico.png
│ │ │ │ ├── code_bg.png
│ │ │ │ ├── codebg.gif
│ │ │ │ ├── connect_post_syn.png
│ │ │ │ ├── connect_qq.gif
│ │ │ │ ├── dash.gif
│ │ │ │ ├── data_valid.gif
│ │ │ │ ├── debate_bg.gif
│ │ │ │ ├── debate_chart.gif
│ │ │ │ ├── debate_dr.jpg
│ │ │ │ ├── debate_vs.gif
│ │ │ │ ├── debatesmall.gif
│ │ │ │ ├── digest_3.gif
│ │ │ │ ├── dot.gif
│ │ │ │ ├── dot_c.gif
│ │ │ │ ├── edit.gif
│ │ │ │ ├── fach.gif
│ │ │ │ ├── fall.png
│ │ │ │ ├── fastreply.gif
│ │ │ │ ├── fav.gif
│ │ │ │ ├── fav_grey.gif
│ │ │ │ ├── feed.gif
│ │ │ │ ├── flw_attach_bg.png
│ │ │ │ ├── flw_btn_s.png
│ │ │ │ ├── flw_btn_specialfo.png
│ │ │ │ ├── flw_btn_unfo_s.png
│ │ │ │ ├── flw_cnr_t.png
│ │ │ │ ├── flw_ico.png
│ │ │ │ ├── flw_post.png
│ │ │ │ ├── flw_side_tab.png
│ │ │ │ ├── flw_statusico.png
│ │ │ │ ├── folder_common.gif
│ │ │ │ ├── folder_new.gif
│ │ │ │ ├── forum.php-mod=post&action=reply&fid=48&tid=109&repquote=247&extra=&page=1
│ │ │ │ ├── forumlink.gif
│ │ │ │ ├── gb.gif
│ │ │ │ ├── gentlemanbg.png
│ │ │ │ ├── grid.png
│ │ │ │ ├── gst.gif
│ │ │ │ ├── home.gif
│ │ │ │ ├── home.php-mod=magic&mid=namepost&idtype=pid&id=247-109
│ │ │ │ ├── home.php-mod=magic&mid=stick&idtype=tid&id=18
│ │ │ │ ├── home.php-mod=spacecp&ac=share&type=thread&id=122
│ │ │ │ ├── homelink.gif
│ │ │ │ ├── hot.png
│ │ │ │ ├── hotspot.gif
│ │ │ │ ├── ico_jdt.png
│ │ │ │ ├── ico_mulu.png
│ │ │ │ ├── ico_notice.png
│ │ │ │ ├── icon_append.png
│ │ │ │ ├── icon_preview.png
│ │ │ │ ├── imagelist_nav.png
│ │ │ │ ├── imgzoom_tb.gif
│ │ │ │ ├── increase.png
│ │ │ │ ├── info.gif
│ │ │ │ ├── input_shadow.png
│ │ │ │ ├── ladybg.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── locked.gif
│ │ │ │ ├── mark.png
│ │ │ │ ├── midavt_shadow.gif
│ │ │ │ ├── mine_icn.png
│ │ │ │ ├── mobile-attach-2.png
│ │ │ │ ├── mobile-type-ie6.png
│ │ │ │ ├── mobile-type.png
│ │ │ │ ├── mood_input.png
│ │ │ │ ├── mu.png
│ │ │ │ ├── new_pm.gif
│ │ │ │ ├── new_pm_2.png
│ │ │ │ ├── newarow.gif
│ │ │ │ ├── noicon.gif
│ │ │ │ ├── nophototiny.png
│ │ │ │ ├── nosexbg.png
│ │ │ │ ├── notice.gif
│ │ │ │ ├── op.png
│ │ │ │ ├── oshr.png
│ │ │ │ ├── p_debate_chart.png
│ │ │ │ ├── passlevel.png
│ │ │ │ ├── pdbt.gif
│ │ │ │ ├── pdbtm.gif
│ │ │ │ ├── pg_arw.png
│ │ │ │ ├── pic-next.png
│ │ │ │ ├── pic-prev.png
│ │ │ │ ├── pin_2.gif
│ │ │ │ ├── pin_3.gif
│ │ │ │ ├── pllb.png
│ │ │ │ ├── pm-bg1.png
│ │ │ │ ├── pm-bg2.png
│ │ │ │ ├── pm.png
│ │ │ │ ├── pm_member.png
│ │ │ │ ├── pmto.gif
│ │ │ │ ├── pn.png
│ │ │ │ ├── pn_color.png
│ │ │ │ ├── pn_reply.png
│ │ │ │ ├── pn_rt.png
│ │ │ │ ├── polljoins.gif
│ │ │ │ ├── pollsmall.gif
│ │ │ │ ├── popupcredit_bg.gif
│ │ │ │ ├── popuptext_bg.gif
│ │ │ │ ├── preview.png
│ │ │ │ ├── pubsave.gif
│ │ │ │ ├── push.png
│ │ │ │ ├── px_e.png
│ │ │ │ ├── qa.gif
│ │ │ │ ├── qq.gif
│ │ │ │ ├── qz.gif
│ │ │ │ ├── re_unsolved.gif
│ │ │ │ ├── rec_add.gif
│ │ │ │ ├── rec_subtract.gif
│ │ │ │ ├── recyclebin.gif
│ │ │ │ ├── repquote.gif
│ │ │ │ ├── rewardsmall.gif
│ │ │ │ ├── rt.png
│ │ │ │ ├── rushreply_s.png
│ │ │ │ ├── rwd.gif
│ │ │ │ ├── rwd2.gif
│ │ │ │ ├── scf.gif
│ │ │ │ ├── search.gif
│ │ │ │ ├── share_btn.png
│ │ │ │ ├── sidecontrol.png
│ │ │ │ ├── sigline.gif
│ │ │ │ ├── slide.png
│ │ │ │ ├── sortnum.png
│ │ │ │ ├── starlevel.gif
│ │ │ │ ├── tag.gif
│ │ │ │ ├── tb.png
│ │ │ │ ├── thead.png
│ │ │ │ ├── thread_prize_s.png
│ │ │ │ ├── tip_bottom.png
│ │ │ │ ├── tip_top.png
│ │ │ │ ├── title.png
│ │ │ │ ├── titlebg_sd.png
│ │ │ │ ├── tradesmall.gif
│ │ │ │ ├── treeline_long.gif
│ │ │ │ ├── treeline_short.gif
│ │ │ │ ├── un_selector.png
│ │ │ │ ├── user_add.gif
│ │ │ │ ├── user_online.gif
│ │ │ │ ├── userinfo.gif
│ │ │ │ ├── v.png
│ │ │ │ ├── viewpay.gif
│ │ │ │ ├── vline.png
│ │ │ │ └── vline2.png
│ │ │ ├── diy
│ │ │ │ ├── bs_2_ft.png
│ │ │ │ ├── bs_2_ft_r.png
│ │ │ │ ├── bs_2_hd.png
│ │ │ │ ├── bs_3_ft.png
│ │ │ │ ├── bs_3_ft_r.png
│ │ │ │ ├── bs_3_hd.png
│ │ │ │ ├── bs_4_ft.png
│ │ │ │ ├── bs_4_ft_r.png
│ │ │ │ ├── bs_4_hd.png
│ │ │ │ ├── bs_5_ft.png
│ │ │ │ ├── bs_5_ft_r.png
│ │ │ │ ├── bs_5_hd.png
│ │ │ │ ├── bs_6_ft.png
│ │ │ │ ├── bs_6_ft_r.png
│ │ │ │ ├── bs_6_hd.png
│ │ │ │ ├── bs_7_ft.png
│ │ │ │ ├── bs_7_ft_r.png
│ │ │ │ ├── bs_7_hd.png
│ │ │ │ ├── panel-toggle-drop.png
│ │ │ │ └── panel-toggle.png
│ │ │ ├── feed
│ │ │ │ ├── friend.gif
│ │ │ │ ├── poke.gif
│ │ │ │ └── task.gif
│ │ │ ├── filetype
│ │ │ │ └── image_s.gif
│ │ │ ├── magic
│ │ │ │ ├── bump.small.gif
│ │ │ │ ├── checkonline.small.gif
│ │ │ │ ├── close.small.gif
│ │ │ │ ├── doodle.small.gif
│ │ │ │ ├── highlight.small.gif
│ │ │ │ ├── jack.small.gif
│ │ │ │ ├── namepost.small.gif
│ │ │ │ ├── open.small.gif
│ │ │ │ ├── showip.small.gif
│ │ │ │ └── stick.small.gif
│ │ │ ├── smiley
│ │ │ │ ├── default
│ │ │ │ │ ├── biggrin.gif
│ │ │ │ │ ├── btn_loop.png
│ │ │ │ │ ├── lol.gif
│ │ │ │ │ ├── sad.gif
│ │ │ │ │ ├── smile.gif
│ │ │ │ │ └── sweat.gif
│ │ │ │ └── grapeman
│ │ │ │ └── 01.gif
│ │ │ └── stamp
│ │ │ ├── 004.gif
│ │ │ ├── 006.gif
│ │ │ └── 011.small.gif
│ │ ├── statics
│ │ │ ├── css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.eot-
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ ├── images
│ │ │ │ │ ├── about
│ │ │ │ │ │ ├── about.png
│ │ │ │ │ │ ├── banner.jpg
│ │ │ │ │ │ ├── icon-lef.png
│ │ │ │ │ │ ├── icon-rig.png
│ │ │ │ │ │ ├── line.png
│ │ │ │ │ │ ├── tit-2.png
│ │ │ │ │ │ ├── tit.png
│ │ │ │ │ │ └── tit2.png
│ │ │ │ │ ├── apk_list.png
│ │ │ │ │ ├── apk_listhover.png
│ │ │ │ │ ├── ewm.jpg
│ │ │ │ │ ├── icon-s566844aed7.png
│ │ │ │ │ ├── icon1.jpg
│ │ │ │ │ ├── icon2.png
│ │ │ │ │ ├── logo.png
│ │ │ │ │ ├── slide-01.jpg
│ │ │ │ │ ├── slide-02.jpg
│ │ │ │ │ └── slide-03.jpg
│ │ │ │ ├── js
│ │ │ │ │ ├── Validform
│ │ │ │ │ │ └── js
│ │ │ │ │ │ └── Validform_v5.3.2.js
│ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ ├── custom.js
│ │ │ │ │ ├── ie.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── jquery.js
│ │ │ │ │ ├── layer
│ │ │ │ │ │ ├── layer.js
│ │ │ │ │ │ └── skin
│ │ │ │ │ │ └── layer.css
│ │ │ │ │ ├── slick
│ │ │ │ │ │ ├── ajax-loader.gif
│ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ ├── slick.eot
│ │ │ │ │ │ │ ├── slick.eot-
│ │ │ │ │ │ │ ├── slick.svg
│ │ │ │ │ │ │ ├── slick.ttf
│ │ │ │ │ │ │ └── slick.woff
│ │ │ │ │ │ ├── slick.css
│ │ │ │ │ │ └── slick.min.js
│ │ │ │ │ └── stickUp.min.js
│ │ │ │ └── stylesheets
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── icon.css
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.eot-
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ ├── iconfont.woff
│ │ │ │ └── style.css
│ │ │ ├── js
│ │ │ │ └── jquery-1.7.2.min.js
│ │ │ ├── tupian
│ │ │ │ ├── 1.jpg
│ │ │ │ └── yanzhengma.png
│ │ │ └── xuanchuan
│ │ │ ├── 20151231094946374.jpg
│ │ │ ├── 20151231101453923.jpg
│ │ │ ├── 20151231101508390.jpg
│ │ │ ├── 20151231101707612.jpg
│ │ │ ├── 20151231101725666.jpg
│ │ │ ├── 20151231101737865.jpg
│ │ │ ├── 20151231101746277.jpg
│ │ │ ├── 20151231101800907.jpg
│ │ │ ├── 20151231101844511.jpg
│ │ │ └── 20151231103705493.jpg
│ │ └── upload
│ │ ├── bankuai.jpg
│ │ ├── image
│ │ │ └── 20170731
│ │ │ └── 2017073110232016919656.PNG
│ │ └── touxiang.jpg
│ ├── config
│ │ ├── beans.xml
│ │ ├── config.properties
│ │ ├── log4j.properties
│ │ ├── springmvc-servlet.xml
│ │ └── sqlMapGenernator.xml
│ └── src
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── cc
│ │ └── javaee
│ │ └── bbs
│ │ ├── controller
│ │ │ ├── admin
│ │ │ │ ├── AdminBankuaiController.java
│ │ │ │ ├── AdminCommonController.java
│ │ │ │ ├── AdminIndexController.java
│ │ │ │ ├── AdminInfoController.java
│ │ │ │ ├── AdminInnerLinkController.java
│ │ │ │ ├── AdminLinkController.java
│ │ │ │ ├── AdminPostContriller.java
│ │ │ │ ├── AdminStopIpController.java
│ │ │ │ ├── AdminUserContriller.java
│ │ │ │ └── AdminZhutiController.java
│ │ │ ├── index
│ │ │ │ ├── IndexBankuaiController.java
│ │ │ │ ├── IndexController.java
│ │ │ │ ├── IndexTieziController.java
│ │ │ │ ├── LoginController.java
│ │ │ │ ├── MemberContriller.java
│ │ │ │ └── ZhucController.java
│ │ │ ├── moderator
│ │ │ │ └── ModeratorCommonController.java
│ │ │ ├── publics
│ │ │ │ ├── CommonController.java
│ │ │ │ ├── DownloadController.java
│ │ │ │ ├── TopageController.java
│ │ │ │ ├── UploadController.java
│ │ │ │ ├── Uploader.java
│ │ │ │ └── YanzhengmaController.java
│ │ │ └── user
│ │ │ ├── JifenContriller.java
│ │ │ ├── MessageController.java
│ │ │ ├── TieziContriller.java
│ │ │ ├── UserContriller.java
│ │ │ └── UserLiuyanContriller.java
│ │ ├── dao
│ │ │ ├── BankuaiDao.java
│ │ │ ├── CommonDao.java
│ │ │ ├── GroupDao.java
│ │ │ ├── HuifuDao.java
│ │ │ ├── InfoDao.java
│ │ │ ├── InnerLinkDao.java
│ │ │ ├── JifenDao.java
│ │ │ ├── JifenGroupDao.java
│ │ │ ├── LinkDao.java
│ │ │ ├── MessageDao.java
│ │ │ ├── PicDao.java
│ │ │ ├── StopIpDao.java
│ │ │ ├── TieziBigDao.java
│ │ │ ├── TieziDao.java
│ │ │ ├── UserDao.java
│ │ │ ├── UserLiuyanDao.java
│ │ │ └── ZhutiDao.java
│ │ ├── filter
│ │ │ └── CommonFilter.java
│ │ ├── model
│ │ │ ├── Bankuai.java
│ │ │ ├── Group.java
│ │ │ ├── GroupUser.java
│ │ │ ├── Huifu.java
│ │ │ ├── Info.java
│ │ │ ├── InnerLink.java
│ │ │ ├── Jifen.java
│ │ │ ├── JifenGroup.java
│ │ │ ├── Link.java
│ │ │ ├── Message.java
│ │ │ ├── PageBean.java
│ │ │ ├── Pic.java
│ │ │ ├── StopIp.java
│ │ │ ├── Tiezi.java
│ │ │ ├── TieziBig.java
│ │ │ ├── User.java
│ │ │ ├── UserLiuyan.java
│ │ │ ├── Zhuti.java
│ │ │ └── Ztree.java
│ │ ├── service
│ │ │ ├── BankuaiService.java
│ │ │ ├── CommonService.java
│ │ │ ├── GroupService.java
│ │ │ ├── HuifuService.java
│ │ │ ├── InfoService.java
│ │ │ ├── InnerLinkService.java
│ │ │ ├── JifenGroupService.java
│ │ │ ├── JifenService.java
│ │ │ ├── LinkService.java
│ │ │ ├── MessageService.java
│ │ │ ├── PicService.java
│ │ │ ├── StopIpService.java
│ │ │ ├── TieziService.java
│ │ │ ├── UserLiuyanService.java
│ │ │ ├── UserService.java
│ │ │ └── ZhutiService.java
│ │ └── tool
│ │ ├── Base64.java
│ │ ├── ConfigPropertiesUtil.java
│ │ ├── JAVAEEThread.java
│ │ ├── Pinyin4j.java
│ │ ├── PublicStatic.java
│ │ ├── Tool.java
│ │ ├── ToolIp.java
│ │ ├── ToolSpring.java
│ │ ├── VerifyCodeUtils.java
│ │ └── thread
│ │ └── IndexThread.java
│ └── mybatis
│ └── sqlMap
│ ├── BankuaiMapper.xml
│ ├── CommonMapper.xml
│ ├── GroupMapper.xml
│ ├── HuifuMapper.xml
│ ├── InfoMapper.xml
│ ├── InnerLinkMapper.xml
│ ├── JifenGroupMapper.xml
│ ├── JifenMapper.xml
│ ├── LinkMapper.xml
│ ├── MessageMapper.xml
│ ├── PicMapper.xml
│ ├── StopIpMapper.xml
│ ├── TieziBigMapper.xml
│ ├── TieziMapper.xml
│ ├── UserLiuyanMapper.xml
│ ├── UserMapper.xml
│ └── ZhutiMapper.xml
└── bbs.sql
191 directories, 1089 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论