-
jiandan--jishiben
java编写的简单带图形界面的记事本 实现了基本的复制 打开 等功能(jishiben GUI)
- 2014-03-28 18:15:00下载
- 积分:1
-
Button to return to the default home page
Button to return to the default home page
- 2022-04-02 08:32:11下载
- 积分:1
-
android应用源码之3G和wifi的切换监听
该android应用程序是用于3G和wifi的切换监听,这个软件是用eclipse开发的
- 2022-03-05 01:45:07下载
- 积分:1
-
在线购物车
导入java.io文件.*;
- 2022-03-07 22:24:27下载
- 积分:1
-
双鱼林SSM图书信息管理系统
说明: 技术要点:
1 此系统采用了目前最流行的ssm框架,其中的spingMVC框架相对于struts2框架更灵活,更安全。
2 本项目springMVC框架采用了注解映射器,使用了RESTful风格的url对系统发起http请求,开发更灵活。
3 同时使用了了hibernate提供的校验框架,对客户端数据进行校验!
4 Mybati数据库DAO层采用的是Mapper代理开发方法,输入映射采用的是POJO包装类型实现,输出映射采用了resultMap类型,实现了数据库多对一映射。
5 spring容器内部使用拦截器,以Spring AOP的方式实现事务控制管理。(Technical points:
1. This system adopts the most popular SSM framework at present. The sping MVC framework is more flexible and safer than the struts 2 framework.
2 The spring MVC framework of this project adopts annotation mapper, and uses RESTful style URL to initiate HTTP requests to the system, which makes the development more flexible.
3 At the same time, the verification framework provided by hibernate is used to verify the client data.)
- 2019-03-28 18:47:02下载
- 积分:1
-
auc
AUC实现源准备率和召回率。AUC的值介于0.5到1.0之间,较大的AUC代表了较好的Performance。(Area Under roc Curve(AUC))
- 2014-07-29 14:52:22下载
- 积分:1
-
java实现中文分词之最大匹配算法
java中文分词之最大匹配法算法,本实验采用网上收集的搜狗实验室的一份通词典,一共有15万七千多词。分词最简单的思路就是查词典,所以分词效果的好坏最重要的是要有一部好词典,及一个好的匹配算法。
- 2022-03-11 16:12:33下载
- 积分:1
-
Lcs
求最长公共子序列。本算法使用动态规划算法,解得最长公共子序列问题。(Find the longest common subsequence. The algorithm uses a dynamic programming algorithm, the solution was the longest common subsequence problem.)
- 2013-12-27 14:01:11下载
- 积分:1
-
文本文件的读写操作,统计其中单词、数字、标点符号等元素出现的次数,并记录单词总数。...
文本文件的读写操作,统计其中单词、数字、标点符号等元素出现的次数,并记录单词总数。-text file read and write operations, statistics words, numbers, punctuation and other elements of the number and the total number of recorded words.
- 2022-03-25 18:56:50下载
- 积分:1
-
在线商品销售
public class DBConnection {
private Connection connection;
private String db_Name = "qian";
private String db_User = "root";
private String db_Password = "lubing";
public DBConnection(){
this.getConection();
}
/*
* 得到Connection对象。
*/
public Connection getConection(){
try {
// 加载数据库驱动
Class.forName("com.mysql.jdbc.Driver");
// 指定连接数据库的URL
String url = "jdbc:mysql://localhost:3306/" + db_Name;
// 通过DriverManager的getConnection()建立连接
connection = DriverManager.getConnection(url, db_User, db_Password);
if (connection == null) {
System.out.println("数据连接出错了!");
}
} catch (Exception e) {
e.printStackTrace();
}
return connection ;
}
/*
* 关闭数据集/语句/连接对象
*/
public void close(Resul
- 2022-01-26 04:27:59下载
- 积分:1