我有一个可以为null的varchar2列的数据库表。值为“NULL”作为字符串。当试图处理结果集时,我面临的问题是字符串“NULL”与任何东西都不匹配。
我正在使用Oracle 11g XE
数据库和ojdbc6.jar
库。
我做错了什么?
<小时/> 以下是复制行为的示例:
Sql:
CREATE TABLE jtest (
ID NUMBER(3) PRIMARY KEY,
TEXT VARCHAR2(30) NULL
);
INSERT INTO jtest VALUES (1, 'Test1');
INSERT INTO jtest VALUES (2, 'NULL');
nullstring.java
public class nullstring {
final static String JDBC_DRIVER = "oracle.jdbc.driver.OracleDriver";
final static String DB_URL = "jdbc:oracle:thin:@myhost:1521:xe";
final static String DB_USER = "myuser";
final static String DB_PASS = "myuserpw";
public static void main(String[] args) throws ClassNotFoundException, SQLException, UnsupportedEncodingException {
Class.forName(JDBC_DRIVER);
Connection hDB = null;
hDB = DriverManager.getConnection(DB_URL, DB_USER, DB_PASS);
String sCelldata = "";
Statement oStatement = null;
oStatement = hDB.createStatement();
ResultSet oResult = oStatement.executeQuery("SELECT id, text FROM jtest");
while (oResult.next()) {
for (int i = 1 ; i < (oResult.getMetaData().getColumnCount() + 1); i++) {
String test = "NULL";
if ( test == "NULL" ) {
System.out.println(">> 1111111111111111111111111111111");
}
if ( oResult.getString(i) == "NULL" ) {
System.out.println(">> 2222222222222222222222222222222");
}
sCelldata = URLDecoder.decode(oResult.getString(i), "UTF-8");
if ( sCelldata == "NULL" ) {
System.out.println(">> 3333333333333333333333333333333");
}
System.out.println("> [" + i + "] " + sCelldata);
sCelldata = "";
}
}
hDB.close();
}
}
输出
>> 1111111111111111111111111111111
> [1] 1
>> 1111111111111111111111111111111
> [2] Test1
>> 1111111111111111111111111111111
> [1] 2
>> 1111111111111111111111111111111
> [2] NULL
>> 1111111111111111111111111111111
答案 0 :(得分:-1)
字符串比较应使用equals
完成。您现在正在比较内存位置。例如:
String test = value_from_db;
if (test == null || "null".equalsIgnoreCase(test)) {
System.out.println("test is null, or contains the value 'null'");
}