复习课程jdbc:使用配置文件properties进行连接数据库,数据库存取图片,批处理,时间戳,事物回滚等等
使用配置文件properties进行连接数据库
首先创建一个file自定义文件名,但是后缀名必须改为.properties(不分大小写):如config.properties;
然后双击config.properties进行编辑:此文件数据是根据键值对来存储的:我们可以把连接数据库的一些连接字符串存储在此文件里;然后用的时候直接读配置文件,到时候更换的时候方便移植和修改。
name value
driver com.microsoft.sqlserver.jdbc.SQLServerDriver
con jdbc\:sqlserver\://localhost\:1433;databaseName\=Test
user sa
pwd
然后用的时候:
public class TestMain {
Connection con=null;
Properties pro=new Properties();
public TestMain() throws IOException, ClassNotFoundException, SQLException
{
pro.load(TestMain.class.getClassLoader().getResourceAsStream("config.properties"));
//加载驱动
Class.forName(pro.getProperty("driver"));
//创建连接
con=DriverManager.getConnection(pro.getProperty("con"),pro.getProperty("user"),pro.getProperty("pwd"));
}
//测试上传图片
@Test
public void setImg() throws SQLException, FileNotFoundException{
String sql="INSERT INTO [Test].[dbo].[User]([name],[age],[image])VALUES(?,?,?)";
PreparedStatement ps=con.prepareStatement(sql);
ps.setObject(1,"测试name");
ps.setObject(2,22);
FileInputStream fis=new FileInputStream(new File("D:\\img\\Picture1.jpg"));//从D盘Img读取
ps.setBinaryStream(3,fis);
int num=ps.executeUpdate();
System.out.println("num为:"+num);
}
//取图片并写入到硬盘文件夹
@Test
public void getIma() throws SQLException, IOException{
Statement state=con.createStatement();
String sql="select [image] from [User] where id=6";
ResultSet rs=state.executeQuery(sql);
rs.next();
InputStream input=rs.getBinaryStream(1);
OutputStream out=new FileOutputStream("D:\\15.jpg");//写入到D盘
byte[] bte=new byte[1024];
int length=0;
while((length=input.read(bte))>0){
out.write(bte,0,length);
}
input.close();
out.close();
}
//批处理:测试时,使用批处理比使用循环.executeUpdate()节省大概一半时间
@Test
public void useBatch() throws SQLException{
String sql="INSERT INTO [Test].[dbo].[User]([name],[age])VALUES(?,?)";
PreparedStatement ps=con.prepareStatement(sql);
long noe=System.currentTimeMillis();
for (int j = 0; j < 10000; j++) {
ps.setObject(1,"sp"+j);
ps.setObject(2,j);
//ps.executeUpdate();原时间为5875毫秒
ps.addBatch();
}
ps.executeBatch();
System.out.println("增加10000次的时间为:"+(System.currentTimeMillis()-noe));
}
//时间戳
@Test
public void testDate() throws SQLException{
String sql="INSERT INTO [Test].[dbo].[User]([name],[age],[startTime],[endTime])VALUES(?,?,?,?)";
PreparedStatement ps=con.prepareStatement(sql);
ps.setString(1,"测试名");
ps.setInt(2,20);
ps.setTimestamp(3,new Timestamp(System.currentTimeMillis()));
ps.setDate(4,new Date(System.currentTimeMillis()));//这个Date是.sql包下的,不是.util包下的,莫导错包了!
int zong=ps.executeUpdate();
System.out.println("时间戳"+zong);
}
//测试回滚不提交
@Test
public void testTransaction() throws SQLException{
con.setAutoCommit(false);//设置默认不自动提交
try {
String sql="update [User] set money=money-100 where id=5";
Statement state=con.createStatement();
state.executeUpdate(sql);
//int a=10/0;
sql="update [User] set money=money+100 where id=1";
state.executeUpdate(sql);
con.commit();//提交事务
} catch (Exception e) {
con.rollback();
}
//用jdbc同样可以实现事物回滚!如果没有设置默认不自动提交,那么执行到int a=10/0;就不向下执行了,转账会出现扣钱,没加钱的错误!
}
}
还有,这里在执行读取操作的时候,用到了 rs.getMetaData().getColumnCount();和rs.getMetaData().getColumnName()很有用;
private List<Map<String,Object>> setMap() throws SQLException{
List<Map<String,Object>> list=new ArrayList<Map<String,Object>>();
Statement state=con.createStatement();
String sql="select * from [User]";
ResultSet rs=state.executeQuery(sql);
while(rs.next()){
Map<String,Object> map=new HashMap<String, Object>();
for (int i = 1; i <=rs.getMetaData().getColumnCount(); i++) {
map.put(rs.getMetaData().getColumnName(i),rs.getObject(i));
}
list.add(map);
}
rs.close();
state.close();
con.close();
return list;
}
@Test
public void getMap() throws SQLException{
List<User> users=new ArrayList<User>();
List<Map<String,Object>> list=setMap();
for (Map<String, Object> map : list) {
User user=new User();
user.setAge(Integer.valueOf((map.get("age").toString())));
user.setId(Integer.valueOf((map.get("id").toString())));
user.setName(map.get("name").toString());
users.add(user);
}
for (User item : users) {
p(item.getId()+"\t"+item.getAge()+"\t"+item.getName());
}
}
@Test
public void getList() throws SQLException{
List<List> list=setList();
for (List list2 : list) {
for (Object object : list2) {
p(object);
}
}
}
private List<List> setList() throws SQLException{
Statement state=con.createStatement();
List<List> list=new ArrayList<List>();
String sql="select * from [User]";
ResultSet rs=state.executeQuery(sql);
while(rs.next()){
List l=new ArrayList();
for (int i = 1; i <= rs.getMetaData().getColumnCount(); i++) {
l.add(rs.getObject(i));
}
list.add(l);
}
rs.close();
state.close();
con.close();
return list;
}
复习课程jdbc:使用配置文件properties进行连接数据库,数据库存取图片,批处理,时间戳,事物回滚等等的更多相关文章
- java jdbc使用配置文件连接数据库:
java jdbc使用配置文件连接数据库: 创建后缀名为:.properties的文件,文件内容包括,数据库驱动.连接的数据库地址.用户名.密码…… 以Mysql为例创建config.properti ...
- JDBC实例--通过连接工具类DBUtil +配置文件来获取连接数据库,方便又快捷
根据前面的连接方法,还有缺点就是,如果人家要换数据库,还得改动源代码,然后还要编译什么的.这样客户修改也不容易. 做法:我们写一个配置文件,把该数据写在配置文件上面,然后通过类来加载改文件,然后读取相 ...
- 读取配置文件properties的几种方式
介绍几种读取方式:参考:https://www.cnblogs.com/sebastian-tyd/p/7895182.html .基于ClassLoder读取配置文件 注意:该方式只能读取类路径下的 ...
- MyBatis XML 配置文件 properties 元素扩展
在分析 MyBatis XML 配置文件 properties 元素时提到了三种配置方式,其中 property 子元素 和 properties 文件都比较容易理解,但是为什么还要提供一种代码参数传 ...
- 操作配置文件Properties
// */ // ]]> 操作配置文件Properties Table of Contents 1 定义 2 读取配置值 3 修改和保存配置 4 注意 1 定义 csharp中在Settin ...
- Java配置文件Properties的读取、写入与更新操作
/** * 实现对Java配置文件Properties的读取.写入与更新操作 */ package test; import java.io.BufferedInputStream; import j ...
- 【转】spring管理属性配置文件properties——使用PropertiesFactoryBean|spring管理属性配置文件properties——使用PropertyPlaceholderConfigurer
spring管理属性配置文件properties--使用PropertiesFactoryBean 对于属性配置,一般采用的是键值对的形式,如:key=value属性配置文件一般使用的是XXX.pr ...
- 对Java配置文件Properties的读取、写入与更新操作
http://breezylee.iteye.com/blog/1340868 对Java配置文件Properties的读取.写入与更新操作 博客分类: javase properties 对Jav ...
- 实现对Java配置文件Properties的读取、写入与更新操作
/** * 实现对Java配置文件Properties的读取.写入与更新操作 */ package test; import java.io.BufferedInputStream; import j ...
随机推荐
- 物联网操作系统HelloX V1.80测试版发布
经过HelloX开发团队近半年的努力,在HelloXV1.79版本基础上,增加许多功能特性,并对V1.79版本的一些特性进行了进一步优化之后,正式形成HelloX V1.80测试版本.经相对充分的测试 ...
- r.js 前端项目打包
目录结构
- LoadingView 自定义加载图片
#import <UIKit/UIKit.h> @interface LoadingView : UIView @property (nonatomic,strong) NSMutable ...
- JS位操作符
1.按位与 AND & var result = 25 & 3; alert(result); //1var result2 = 25 & -3;alert(result2); ...
- jQuery动态对表格Table进行添加或删除行以及修改列值操作
jQuery,不仅可以以少量的代码做很多操作,而且兼容性好(各种浏览器,各种版本). 下面用jQuery动态对表格Table进行添加或删除行以及修改列值操作 1.jQuery代码 <script ...
- i++和++i的区别
先看如下程序: class Program { static void Main(string[] args) { ; ; ; ; x = i++; Console.WriteLine("x ...
- Opencv + vs2012环境配置
首先获得最新的Opencv 2.4.10源码:opencv源码下载 一.Opencv环境变量配置 1.将源码安装到制定目录: 2.为Opencv 添加环境变量:计算机-->属性 点击高级系统设置 ...
- .NET(c#)new关键字的三种用法
前几天去家公司面试,有一道这样的题:写出c#中new关键字的三种用法,思前想后挖空心思也只想出了两种用法,回来查了下msdn,还真是有第三种用法:用于在泛型声明中约束可能用作类型参数的参数的类型,这是 ...
- C#实现二叉查找树
简介 树是一种非线性结构.树的本质是将一些节点由边连接起来,形成层级的结构.而二叉树是一种特殊的树,使得树每个子节点必须小于等于2.而二叉查找树又是一类特殊的二叉树.使得每一个节点的左节点或左子树的所 ...
- MVC项目实践,在三层架构下实现SportsStore-08,部署到IIS服务器
SportsStore是<精通ASP.NET MVC3框架(第三版)>中演示的MVC项目,在该项目中涵盖了MVC的众多方面,包括:使用DI容器.URL优化.导航.分页.购物车.订单.产品管 ...