摘要:
使用excel文件直接拷贝。这种主要用于要写入的数据已是excel文件或者行列分明的其它格式文件,每一列的值和表结构相对应,可直接打开表的行级锁,把数据拷贝进入。打开行级锁方法:select t.*,rowid from 表名 t where 1=2;select * from 表名 where 1 阅读全文
摘要:
例子如: public class Example { String str = new String("good"); char[] ch = { 'a', 'b', 'c' }; public static void main(String args[]) { Example ex = new 阅读全文
摘要:
public class Test_String_equals { public static void main(String[] args) { String a1 = new String("hello world!"); String a2 = new String("hello world!"); System.out.println... 阅读全文