-
Jsp+Servlet开发了一个仓库数据库系统
【原创】用Jsp+Servlet开发了一个仓库数据库系统,使用的数据库是MySQL。
文档完整,代码清晰。([Original] using Jsp+Servlet development of a warehouse database system, the database used by MySQL. The document is complete, clear code.)
- 2012-06-27 16:50:44下载
- 积分:1
-
AndBase开发各种功能
AndBase开发各种功能
- 2015-06-02下载
- 积分:1
-
论坛
校园论坛系统BBS,有发帖、回帖、看帖、浏览帖子并回复,可参与留言可看评论数和转载量。包含各类校园论坛主题。大家可以一起参与到校园热点事件的讨论中。
- 2022-06-30 12:05:38下载
- 积分:1
-
java的消息队列
java的消息队列-the Message Queue
- 2022-02-05 04:58:47下载
- 积分:1
-
java中的treetable实现
java中没有treetable这个窗体,于是自己写了一个,参照sun的例子,但是数据模型是自己写的,相当开放...
java中的treetable实现
java中没有treetable这个窗体,于是自己写了一个,参照sun的例子,但是数据模型是自己写的,相当开放-of java java treetable not realize the window treetable and he made himself wrote a reference to the example of sun, but the data model is himself wrote, quite open
- 2022-05-13 16:55:27下载
- 积分:1
-
文本分类算法
对newsgroup188208文档集进行预处理,提取出30095 个特征词
计算每篇文档中的特征词的TF*IDF值,实现文档向量化,在KNN算法中使用
用JAVA实现了KNN算法及朴素贝叶斯算法的newsgroup文本分类器
- 2022-01-26 06:25:31下载
- 积分:1
-
EJB设计模式(代码).zip
EJB Design Patterns (Code).zip
- 2022-06-20 21:45:07下载
- 积分:1
-
weibo4j
实现新浪微博系统的基本功能,包括注册用户管理,发表心情,上传照片,发私信以及前台表单验证。 项目技术架构:项目采用自定义的仿Struts框架的web系统开发模式,应用MVC的三层体系结构,使系统可以便捷的进行业务扩展和适应变化的业务需求(Sina microblogging system s basic functions, including registered user management, published mood, upload photos, send private messages, and the front desk form validation. Project technical architecture: The project uses Struts framework imitation custom web system development model, the application of MVC three-tier architecture, the system can be convenient for business expansion and to adapt to changing business needs)
- 2017-09-08 15:32:53下载
- 积分:1
-
ZookeeperClient
说明: zookper节点搭建、持久节点、临时节点创建以及动态上下线(Construction of Zookper Node and Dynamic Up and Down)
- 2020-06-20 10:00:01下载
- 积分:1
-
httpcomponents-client-4.3-bin
1、GET方式
第一步、创建一个客户端,类似于你用浏览器打开一个网页
HttpClient httpClient = new HttpClient()
第二步、创建一个GET方法,用来获取到你需要抓取的网页URL
GetMethod getMethod = new GetMethod("http://www.baidu.com")
第三步、获得网址的响应状态码,200表示请求成功
int statusCode = httpClient.executeMethod(getMethod)
第四步、获取网页的源码
byte[] responseBody = getMethod.getResponseBody()
- 2013-09-16 16:51:49下载
- 积分:1