java连接Oracle乱码_jdbc-oracle-字符集-乱码

本文介绍了一种解决Oracle数据库中出现乱码的方法。通过两次转换字符集的方式,确保了数据正确地插入和查询,避免了乱码问题。具体步骤包括使用GBK编码设置SQL语句并将其转换为ISO-8859-1,以及将查询结果从ISO-8859-1转换回GBK。

本地的数据库是oracle.字符集是WE8ISO8859P1,

提取过来的值是乱码。

实现办法:

插入一条记录:

Connection conn=null;

PreparedStatement pstmt = null;

try {

String strSql="insert into tabA(A,B) values(11&121)";

conn=ds.getConnection();

strSql = new String(strSql.getBytes("GBK"), "ISO-8859-1");

pstmt = conn.prepareStatement(strSql);

pstmt.executeUpdate();

}

catch (Exception e) {

} finally {

rs.close;

pstmt.close;

coon.close;

}

查询一条记录:

Connection conn=null;

PreparedStatement pstmt = null;

ResultSet rs=null;

try {

String sql="select B from tabA where A=1111";

conn=ds.getConnection();

Sql = new String(strSql.getBytes("GBK"), "ISO-8859-1");

pstmt = conn.prepareStatement(sql);

rs=pstmt.executeQuery();

String s;

if (rs.next()){

s=new String(rs.getString(1) .getBytes("ISO-8859-1"), "GBK");

}

catch (Exception e) {

}

finally {

rs.close;

pstmt.close;

coon.close;

}

总结:进行两次转码1.先是对sql语句进行转码;2.在进行对单个字段进行转码

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值