在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → JAVA+聚类+KMeans图书推荐系统

JAVA+聚类+KMeans图书推荐系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:109.73M
  • 下载次数:19
  • 浏览次数:200
  • 发布时间:2021-10-29
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
JAVA+聚类+KMeans图书推荐系统 使用了聚类算法来给图书推荐进行排名,适合毕业设计进行参考~代码是基于javaweb的应用
【实例截图】
【核心代码】
4744300845157306343.zip
└── KMeans图书推荐系统
├── BooksRecommendationKMeans.iml
├── BookSystem.iml
├── classes
│   ├── artifacts
│   │   └── BooksRecommendationKMeans_war_exploded
│   │   ├── bootstrap
│   │   │   ├── 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
│   │   │   └── npm.js
│   │   ├── css
│   │   │   ├── auth.css
│   │   │   ├── bigdata.css
│   │   │   ├── detail.css
│   │   │   ├── index.css
│   │   │   ├── login.css
│   │   │   └── main.css
│   │   ├── echarts
│   │   │   ├── build.js
│   │   │   ├── config-tpl.js
│   │   │   ├── echarts-all.js
│   │   │   ├── echarts.js
│   │   │   ├── echarts-map.js
│   │   │   ├── echarts-original.js
│   │   │   ├── echarts-original-map.js
│   │   │   ├── echarts-plain.js
│   │   │   ├── echarts-plain-map.js
│   │   │   ├── echarts-plain-original.js
│   │   │   ├── echarts-plain-original-map.js
│   │   │   ├── r.js
│   │   │   └── wrap
│   │   │   ├── almond.js
│   │   │   ├── end.js
│   │   │   ├── end-map.js
│   │   │   └── start.js
│   │   ├── headicon
│   │   │   ├── 10.jpg
│   │   │   ├── 11.jpg
│   │   │   ├── 12.jpg
│   │   │   ├── 1.jpg
│   │   │   ├── 2.jpg
│   │   │   ├── 3.jpg
│   │   │   ├── 4.jpg
│   │   │   ├── 5.jpg
│   │   │   ├── 6.jpg
│   │   │   ├── 7.jpg
│   │   │   ├── 8.jpg
│   │   │   └── 9.jpg
│   │   ├── images
│   │   │   ├── favicon.ico
│   │   │   └── header-logo.png
│   │   ├── jedate
│   │   │   ├── jedate.js
│   │   │   ├── jedate.min.js
│   │   │   └── skin
│   │   │   ├── gray.css
│   │   │   ├── green.css
│   │   │   ├── jedate.css
│   │   │   └── red.css
│   │   ├── js
│   │   │   ├── jquery.min.js
│   │   │   └── main.js
│   │   ├── location
│   │   │   └── LocList.xml
│   │   ├── META-INF
│   │   │   ├── context.xml
│   │   │   └── MANIFEST.MF
│   │   ├── test
│   │   │   └── index.html
│   │   └── WEB-INF
│   │   ├── classes
│   │   │   ├── com
│   │   │   │   └── mobile
│   │   │   │   ├── controller
│   │   │   │   │   └── MyController.class
│   │   │   │   ├── dao
│   │   │   │   │   └── CommonDao.class
│   │   │   │   ├── exception
│   │   │   │   │   ├── MyExceptionHandler.class
│   │   │   │   │   └── MyRuntimeException.class
│   │   │   │   ├── interceptor
│   │   │   │   │   ├── NeedLoginInterceptor.class
│   │   │   │   │   └── PageLogInterceptor.class
│   │   │   │   ├── service
│   │   │   │   │   └── MyService.class
│   │   │   │   ├── test
│   │   │   │   │   └── Test.class
│   │   │   │   ├── util
│   │   │   │   │   ├── BugUtil.class
│   │   │   │   │   ├── Constant.class
│   │   │   │   │   ├── CsvCheckUtil.class
│   │   │   │   │   ├── CsvUtil.class
│   │   │   │   │   ├── DateUtil.class
│   │   │   │   │   ├── DownloadRecord.class
│   │   │   │   │   ├── HttpUtil.class
│   │   │   │   │   ├── IndentifyCodeUtil.class
│   │   │   │   │   ├── IpUtil.class
│   │   │   │   │   ├── ListUtil.class
│   │   │   │   │   ├── MathUtil.class
│   │   │   │   │   ├── ReflectUtils.class
│   │   │   │   │   ├── StringUtil.class
│   │   │   │   │   └── SystemUtil.class
│   │   │   │   └── vo
│   │   │   │   ├── Book.class
│   │   │   │   ├── Book.hbm.xml
│   │   │   │   ├── ErrorLog.class
│   │   │   │   ├── ErrorLog.hbm.xml
│   │   │   │   ├── Log.class
│   │   │   │   ├── Log.hbm.xml
│   │   │   │   ├── MyFile.class
│   │   │   │   ├── MyFile.hbm.xml
│   │   │   │   ├── Record.class
│   │   │   │   ├── Record.hbm.xml
│   │   │   │   ├── Round.class
│   │   │   │   ├── Round.hbm.xml
│   │   │   │   ├── ScoreResultCenter.class
│   │   │   │   ├── ScoreResultCenter.hbm.xml
│   │   │   │   ├── ScoreResult.class
│   │   │   │   ├── ScoreResultGroup.class
│   │   │   │   ├── ScoreResult.hbm.xml
│   │   │   │   ├── User.class
│   │   │   │   └── User.hbm.xml
│   │   │   ├── config
│   │   │   │   └── spring
│   │   │   │   ├── spring-beans.xml
│   │   │   │   ├── spring-common.xml
│   │   │   │   └── spring-mvc.xml
│   │   │   └── log4j.properties
│   │   ├── jsp
│   │   │   ├── exception.jsp
│   │   │   ├── index.jsp
│   │   │   ├── login.jsp
│   │   │   ├── main0.jsp
│   │   │   ├── main1.jsp
│   │   │   ├── main2.jsp
│   │   │   ├── MyJsp.jsp
│   │   │   ├── register.jsp
│   │   │   ├── test.jsp
│   │   │   ├── you01.jsp
│   │   │   ├── you021.jsp
│   │   │   ├── you022.jsp
│   │   │   ├── you03.jsp
│   │   │   ├── you111.jsp
│   │   │   ├── you11.jsp
│   │   │   ├── you121.jsp
│   │   │   ├── you12.jsp
│   │   │   ├── you13.jsp
│   │   │   ├── you14.jsp
│   │   │   ├── you15.jsp
│   │   │   ├── you16.jsp
│   │   │   ├── you21.jsp
│   │   │   ├── you22.jsp
│   │   │   └── you23.jsp
│   │   ├── lib
│   │   │   ├── antlr-2.7.7.jar
│   │   │   ├── aopalliance.jar
│   │   │   ├── aspectjrt.jar
│   │   │   ├── aspectjtools.jar
│   │   │   ├── aspectjweaver.jar
│   │   │   ├── c3p0-0.9.2.1.jar
│   │   │   ├── cdi-api-1.1.jar
│   │   │   ├── classmate-1.3.0.jar
│   │   │   ├── commons-beanutils-1.8.0.jar
│   │   │   ├── commons-collections-3.2.1.jar
│   │   │   ├── commons-collections4-4.1.jar
│   │   │   ├── commons-fileupload-1.3.2.jar
│   │   │   ├── commons-io-2.4.jar
│   │   │   ├── commons-lang-2.5.jar
│   │   │   ├── commons-lang3-3.5.jar
│   │   │   ├── commons-logging-1.1.3.jar
│   │   │   ├── dom4j-1.6.1.jar
│   │   │   ├── el-api-2.2.jar
│   │   │   ├── excelutils-1.41.jar
│   │   │   ├── ezmorph-1.0.6.jar
│   │   │   ├── freemarker-2.3.23.jar
│   │   │   ├── geronimo-jta_1.1_spec-1.1.1.jar
│   │   │   ├── hibernate-commons-annotations-5.0.1.Final.jar
│   │   │   ├── hibernate-core-5.2.5.Final.jar
│   │   │   ├── hibernate-jpa-2.1-api-1.0.0.Final.jar
│   │   │   ├── jandex-2.0.3.Final.jar
│   │   │   ├── javacsv.jar
│   │   │   ├── javassist-3.20.0-GA.jar
│   │   │   ├── javax.inject-1.jar
│   │   │   ├── jboss-interceptors-api_1.1_spec-1.0.0.Beta1.jar
│   │   │   ├── jboss-logging-3.3.0.Final.jar
│   │   │   ├── json-lib-2.4-jdk15.jar
│   │   │   ├── jsr250-api-1.0.jar
│   │   │   ├── log4j-1.2.17.jar
│   │   │   ├── log4jdbc4-1.2.1.jar
│   │   │   ├── mchange-commons-java-0.2.3.4.jar
│   │   │   ├── mysql-connector-java-5.1.40-bin.jar
│   │   │   ├── ognl-3.1.10.jar
│   │   │   ├── org.aspectj.matcher.jar
│   │   │   ├── poi-3.16-beta2.jar
│   │   │   ├── poi-excelant-3.16-beta2.jar
│   │   │   ├── poi-ooxml-3.16-beta2.jar
│   │   │   ├── poi-ooxml-schemas-3.16-beta2.jar
│   │   │   ├── poi-scratchpad-3.16-beta2.jar
│   │   │   ├── spring-aop-4.3.4.RELEASE.jar
│   │   │   ├── spring-aspects-4.3.4.RELEASE.jar
│   │   │   ├── spring-beans-4.3.4.RELEASE.jar
│   │   │   ├── spring-context-4.3.4.RELEASE.jar
│   │   │   ├── spring-context-support-4.3.4.RELEASE.jar
│   │   │   ├── spring-core-4.3.4.RELEASE.jar
│   │   │   ├── spring-expression-4.3.4.RELEASE.jar
│   │   │   ├── spring-instrument-4.3.4.RELEASE.jar
│   │   │   ├── spring-instrument-tomcat-4.3.4.RELEASE.jar
│   │   │   ├── spring-jdbc-4.3.4.RELEASE.jar
│   │   │   ├── spring-jms-4.3.4.RELEASE.jar
│   │   │   ├── spring-messaging-4.3.4.RELEASE.jar
│   │   │   ├── spring-orm-4.3.4.RELEASE.jar
│   │   │   ├── spring-oxm-4.3.4.RELEASE.jar
│   │   │   ├── spring-test-4.3.4.RELEASE.jar
│   │   │   ├── spring-tx-4.3.4.RELEASE.jar
│   │   │   ├── spring-web-4.3.4.RELEASE.jar
│   │   │   ├── spring-webmvc-4.3.4.RELEASE.jar
│   │   │   ├── spring-webmvc-portlet-4.3.4.RELEASE.jar
│   │   │   ├── spring-websocket-4.3.4.RELEASE.jar
│   │   │   ├── xercesImpl.jar
│   │   │   ├── xml-apis.jar
│   │   │   └── xmlbeans-2.6.0.jar
│   │   └── web.xml
│   └── production
│   └── BooksRecommendationKMeans
│   ├── com
│   │   └── mobile
│   │   ├── controller
│   │   │   └── MyController.class
│   │   ├── dao
│   │   │   └── CommonDao.class
│   │   ├── exception
│   │   │   ├── MyExceptionHandler.class
│   │   │   └── MyRuntimeException.class
│   │   ├── interceptor
│   │   │   ├── NeedLoginInterceptor.class
│   │   │   └── PageLogInterceptor.class
│   │   ├── service
│   │   │   └── MyService.class
│   │   ├── test
│   │   │   └── Test.class
│   │   ├── util
│   │   │   ├── BugUtil.class
│   │   │   ├── Constant.class
│   │   │   ├── CsvCheckUtil.class
│   │   │   ├── CsvUtil.class
│   │   │   ├── DateUtil.class
│   │   │   ├── DownloadRecord.class
│   │   │   ├── HttpUtil.class
│   │   │   ├── IndentifyCodeUtil.class
│   │   │   ├── IpUtil.class
│   │   │   ├── ListUtil.class
│   │   │   ├── MathUtil.class
│   │   │   ├── ReflectUtils.class
│   │   │   ├── StringUtil.class
│   │   │   └── SystemUtil.class
│   │   └── vo
│   │   ├── Book.class
│   │   ├── Book.hbm.xml
│   │   ├── ErrorLog.class
│   │   ├── ErrorLog.hbm.xml
│   │   ├── Log.class
│   │   ├── Log.hbm.xml
│   │   ├── MyFile.class
│   │   ├── MyFile.hbm.xml
│   │   ├── Record.class
│   │   ├── Record.hbm.xml
│   │   ├── Round.class
│   │   ├── Round.hbm.xml
│   │   ├── ScoreResultCenter.class
│   │   ├── ScoreResultCenter.hbm.xml
│   │   ├── ScoreResult.class
│   │   ├── ScoreResultGroup.class
│   │   ├── ScoreResult.hbm.xml
│   │   ├── User.class
│   │   └── User.hbm.xml
│   ├── config
│   │   └── spring
│   │   ├── spring-beans.xml
│   │   ├── spring-common.xml
│   │   └── spring-mvc.xml
│   └── log4j.properties
├── from.gif
├── lib
│   ├── javax.ejb.jar
│   ├── javax.jms.jar
│   ├── javax.resource.jar
│   ├── javax.servlet.jar
│   ├── javax.servlet.jsp.jar
│   └── javax.servlet.jsp.jstl.jar
├── src
│   ├── com
│   │   └── mobile
│   │   ├── controller
│   │   │   └── MyController.java
│   │   ├── dao
│   │   │   └── CommonDao.java
│   │   ├── exception
│   │   │   ├── MyExceptionHandler.java
│   │   │   └── MyRuntimeException.java
│   │   ├── interceptor
│   │   │   ├── NeedLoginInterceptor.java
│   │   │   └── PageLogInterceptor.java
│   │   ├── service
│   │   │   └── MyService.java
│   │   ├── test
│   │   │   └── Test.java
│   │   ├── util
│   │   │   ├── BugUtil.java
│   │   │   ├── Constant.java
│   │   │   ├── CsvCheckUtil.java
│   │   │   ├── CsvUtil.java
│   │   │   ├── DateUtil.java
│   │   │   ├── DownloadRecord.java
│   │   │   ├── HttpUtil.java
│   │   │   ├── IndentifyCodeUtil.java
│   │   │   ├── IpUtil.java
│   │   │   ├── ListUtil.java
│   │   │   ├── MathUtil.java
│   │   │   ├── ReflectUtils.java
│   │   │   ├── StringUtil.java
│   │   │   └── SystemUtil.java
│   │   └── vo
│   │   ├── Book.hbm.xml
│   │   ├── Book.java
│   │   ├── ErrorLog.hbm.xml
│   │   ├── ErrorLog.java
│   │   ├── Log.hbm.xml
│   │   ├── Log.java
│   │   ├── MyFile.hbm.xml
│   │   ├── MyFile.java
│   │   ├── Record.hbm.xml
│   │   ├── Record.java
│   │   ├── Round.hbm.xml
│   │   ├── Round.java
│   │   ├── ScoreResultCenter.hbm.xml
│   │   ├── ScoreResultCenter.java
│   │   ├── ScoreResultGroup.java
│   │   ├── ScoreResult.hbm.xml
│   │   ├── ScoreResult.java
│   │   ├── User.hbm.xml
│   │   └── User.java
│   ├── config
│   │   └── spring
│   │   ├── spring-beans.xml
│   │   ├── spring-common.xml
│   │   └── spring-mvc.xml
│   └── log4j.properties
├── WebRoot
│   ├── bootstrap
│   │   ├── 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
│   │   └── npm.js
│   ├── css
│   │   ├── auth.css
│   │   ├── bigdata.css
│   │   ├── detail.css
│   │   ├── index.css
│   │   ├── login.css
│   │   └── main.css
│   ├── echarts
│   │   ├── build.js
│   │   ├── config-tpl.js
│   │   ├── echarts-all.js
│   │   ├── echarts.js
│   │   ├── echarts-map.js
│   │   ├── echarts-original.js
│   │   ├── echarts-original-map.js
│   │   ├── echarts-plain.js
│   │   ├── echarts-plain-map.js
│   │   ├── echarts-plain-original.js
│   │   ├── echarts-plain-original-map.js
│   │   ├── r.js
│   │   └── wrap
│   │   ├── almond.js
│   │   ├── end.js
│   │   ├── end-map.js
│   │   └── start.js
│   ├── headicon
│   │   ├── 10.jpg
│   │   ├── 11.jpg
│   │   ├── 12.jpg
│   │   ├── 1.jpg
│   │   ├── 2.jpg
│   │   ├── 3.jpg
│   │   ├── 4.jpg
│   │   ├── 5.jpg
│   │   ├── 6.jpg
│   │   ├── 7.jpg
│   │   ├── 8.jpg
│   │   └── 9.jpg
│   ├── images
│   │   ├── favicon.ico
│   │   └── header-logo.png
│   ├── jedate
│   │   ├── jedate.js
│   │   ├── jedate.min.js
│   │   └── skin
│   │   ├── gray.css
│   │   ├── green.css
│   │   ├── jedate.css
│   │   └── red.css
│   ├── js
│   │   ├── jquery.min.js
│   │   └── main.js
│   ├── location
│   │   └── LocList.xml
│   ├── META-INF
│   │   ├── context.xml
│   │   └── MANIFEST.MF
│   ├── test
│   │   └── index.html
│   └── WEB-INF
│   ├── classes
│   │   ├── com
│   │   │   └── mobile
│   │   │   ├── controller
│   │   │   │   └── MyController.class
│   │   │   ├── dao
│   │   │   │   └── CommonDao.class
│   │   │   ├── exception
│   │   │   │   ├── MyExceptionHandler.class
│   │   │   │   └── MyRuntimeException.class
│   │   │   ├── interceptor
│   │   │   │   ├── NeedLoginInterceptor.class
│   │   │   │   └── PageLogInterceptor.class
│   │   │   ├── service
│   │   │   │   └── MyService.class
│   │   │   ├── test
│   │   │   │   └── Test.class
│   │   │   ├── util
│   │   │   │   ├── BugUtil.class
│   │   │   │   ├── Constant.class
│   │   │   │   ├── CsvCheckUtil.class
│   │   │   │   ├── CsvUtil.class
│   │   │   │   ├── DateUtil.class
│   │   │   │   ├── DownloadRecord.class
│   │   │   │   ├── HttpUtil.class
│   │   │   │   ├── IndentifyCodeUtil.class
│   │   │   │   ├── IpUtil.class
│   │   │   │   ├── ListUtil.class
│   │   │   │   ├── MathUtil.class
│   │   │   │   ├── ReflectUtils.class
│   │   │   │   ├── StringUtil.class
│   │   │   │   └── SystemUtil.class
│   │   │   └── vo
│   │   │   ├── Book.class
│   │   │   ├── Book.hbm.xml
│   │   │   ├── ErrorLog.class
│   │   │   ├── ErrorLog.hbm.xml
│   │   │   ├── Log.class
│   │   │   ├── Log.hbm.xml
│   │   │   ├── MyFile.class
│   │   │   ├── MyFile.hbm.xml
│   │   │   ├── Record.class
│   │   │   ├── Record.hbm.xml
│   │   │   ├── Round.class
│   │   │   ├── Round.hbm.xml
│   │   │   ├── ScoreResultCenter.class
│   │   │   ├── ScoreResultCenter.hbm.xml
│   │   │   ├── ScoreResult.class
│   │   │   ├── ScoreResultGroup.class
│   │   │   ├── ScoreResult.hbm.xml
│   │   │   ├── User.class
│   │   │   └── User.hbm.xml
│   │   ├── config
│   │   │   └── spring
│   │   │   ├── spring-beans.xml
│   │   │   ├── spring-common.xml
│   │   │   └── spring-mvc.xml
│   │   └── log4j.properties
│   ├── jsp
│   │   ├── exception.jsp
│   │   ├── index.jsp
│   │   ├── login.jsp
│   │   ├── main0.jsp
│   │   ├── main1.jsp
│   │   ├── main2.jsp
│   │   ├── MyJsp.jsp
│   │   ├── register.jsp
│   │   ├── test.jsp
│   │   ├── you01.jsp
│   │   ├── you021.jsp
│   │   ├── you022.jsp
│   │   ├── you03.jsp
│   │   ├── you111.jsp
│   │   ├── you11.jsp
│   │   ├── you121.jsp
│   │   ├── you12.jsp
│   │   ├── you13.jsp
│   │   ├── you14.jsp
│   │   ├── you15.jsp
│   │   ├── you16.jsp
│   │   ├── you21.jsp
│   │   ├── you22.jsp
│   │   └── you23.jsp
│   ├── lib
│   │   ├── antlr-2.7.7.jar
│   │   ├── aopalliance.jar
│   │   ├── aspectjrt.jar
│   │   ├── aspectjtools.jar
│   │   ├── aspectjweaver.jar
│   │   ├── c3p0-0.9.2.1.jar
│   │   ├── cdi-api-1.1.jar
│   │   ├── classmate-1.3.0.jar
│   │   ├── commons-beanutils-1.8.0.jar
│   │   ├── commons-collections-3.2.1.jar
│   │   ├── commons-collections4-4.1.jar
│   │   ├── commons-fileupload-1.3.2.jar
│   │   ├── commons-io-2.4.jar
│   │   ├── commons-lang-2.5.jar
│   │   ├── commons-lang3-3.5.jar
│   │   ├── commons-logging-1.1.3.jar
│   │   ├── dom4j-1.6.1.jar
│   │   ├── el-api-2.2.jar
│   │   ├── excelutils-1.41.jar
│   │   ├── ezmorph-1.0.6.jar
│   │   ├── freemarker-2.3.23.jar
│   │   ├── geronimo-jta_1.1_spec-1.1.1.jar
│   │   ├── hibernate-commons-annotations-5.0.1.Final.jar
│   │   ├── hibernate-core-5.2.5.Final.jar
│   │   ├── hibernate-jpa-2.1-api-1.0.0.Final.jar
│   │   ├── jandex-2.0.3.Final.jar
│   │   ├── javacsv.jar
│   │   ├── javassist-3.20.0-GA.jar
│   │   ├── javax.inject-1.jar
│   │   ├── jboss-interceptors-api_1.1_spec-1.0.0.Beta1.jar
│   │   ├── jboss-logging-3.3.0.Final.jar
│   │   ├── json-lib-2.4-jdk15.jar
│   │   ├── jsr250-api-1.0.jar
│   │   ├── log4j-1.2.17.jar
│   │   ├── log4jdbc4-1.2.1.jar
│   │   ├── mchange-commons-java-0.2.3.4.jar
│   │   ├── mysql-connector-java-5.1.40-bin.jar
│   │   ├── ognl-3.1.10.jar
│   │   ├── org.aspectj.matcher.jar
│   │   ├── poi-3.16-beta2.jar
│   │   ├── poi-excelant-3.16-beta2.jar
│   │   ├── poi-ooxml-3.16-beta2.jar
│   │   ├── poi-ooxml-schemas-3.16-beta2.jar
│   │   ├── poi-scratchpad-3.16-beta2.jar
│   │   ├── spring-aop-4.3.4.RELEASE.jar
│   │   ├── spring-aspects-4.3.4.RELEASE.jar
│   │   ├── spring-beans-4.3.4.RELEASE.jar
│   │   ├── spring-context-4.3.4.RELEASE.jar
│   │   ├── spring-context-support-4.3.4.RELEASE.jar
│   │   ├── spring-core-4.3.4.RELEASE.jar
│   │   ├── spring-expression-4.3.4.RELEASE.jar
│   │   ├── spring-instrument-4.3.4.RELEASE.jar
│   │   ├── spring-instrument-tomcat-4.3.4.RELEASE.jar
│   │   ├── spring-jdbc-4.3.4.RELEASE.jar
│   │   ├── spring-jms-4.3.4.RELEASE.jar
│   │   ├── spring-messaging-4.3.4.RELEASE.jar
│   │   ├── spring-orm-4.3.4.RELEASE.jar
│   │   ├── spring-oxm-4.3.4.RELEASE.jar
│   │   ├── spring-test-4.3.4.RELEASE.jar
│   │   ├── spring-tx-4.3.4.RELEASE.jar
│   │   ├── spring-web-4.3.4.RELEASE.jar
│   │   ├── spring-webmvc-4.3.4.RELEASE.jar
│   │   ├── spring-webmvc-portlet-4.3.4.RELEASE.jar
│   │   ├── spring-websocket-4.3.4.RELEASE.jar
│   │   ├── xercesImpl.jar
│   │   ├── xml-apis.jar
│   │   └── xmlbeans-2.6.0.jar
│   └── web.xml
├── 上传图片
│   ├── upload
│   │   └── image
│   │   ├── 20170510231530Java从入门到精通.jpg
│   │   ├── 20170510234150考研数学复习全书.jpg
│   │   ├── 20170510234314新概念英语.jpg
│   │   ├── 20170510234532贝叶斯方法.jpg
│   │   ├── 20170510234543雅思词汇.jpg
│   │   ├── 20170510234553英语单词记忆密码.jpg
│   │   ├── 20170510235012考研英语2018.jpg
│   │   ├── 20170510235325肖秀荣2018考研政治.jpg
│   │   ├── 20170510235404书虫·牛津英汉双语读物.jpg
│   │   └── 20170510235440星火英语 英语四级真题.jpg
│   └── 说明.txt
└── 数据库
└── Dump20170515.sql

99 directories, 509 files

标签:

实例下载地址

JAVA+聚类+KMeans图书推荐系统

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警