如题,读取Double、Integer、DateTime、Varchar类型的数据时出现乱码,而Character、Numeric、Date、Float能正确读取。
byte[] b = new byte[fis1.available()];fis1.read(b);cqPO.setDataSourceBlob(Hibernate.createBlob(b));// 只能通过字节读取
看了下b中的数据,对应的Double、Integer、DateTime、Varchar类型的数据都不对