您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么用java導出dbf文件生僻漢字”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用java導出dbf文件生僻漢字”吧!
java導出數據到dbf文件,如果姓名中有生僻漢字,在dbf中看到的很可能是?號。
遇到這種情況需查對GBK的生僻漢字的Unicode表,GBK提及的52個生僻漢字有兩種Unicode。
?(yan 3) \u4ADE就不能在dbf中正常顯示是?
如果換成\uE863則可以(可以打開word的插入->符號->其他符號,在字符代碼中輸入4ADE的到字符插入word,輸入E863的到另一形式插入word,將這兩種形式的字符從word拷貝到Visual Fox Pro的命令窗口可以看到差別,一個變成?一個能正常顯示)。
1.建立52個生僻漢字的unicode映射Map
2.將生僻漢字轉成unicode形式(有可能是將整個姓名轉成unicode)
3.將姓名的unicode形式進行分割(\u)生成數組(注意兩端的雙引號)
4.遍歷unicode數組,如果找到生僻漢字的unicode則進行替換
5.將unicode還原成漢字
6.寫入dbf
//unicode轉中文 public static String unicodeToString(String str) { return String.valueOf(JSON.parse(str)); } //中文字符轉unicode public static String stringToUnicode(String s) { return JSON.toJSONString(s, SerializerFeature.BrowserCompatible); }
其他說明:
?在mysql中能顯示出來,導出到dbf中時如果選擇 字符集為 GB2312或GBK,導出的 ?為?。
在Visual Fox Pro 9的命令窗口里輸入的 ?為?
打開word,插入,輸入字符編碼4DAE得到 ?,插入到word,復制粘貼到 Visual Fox Pro 9的命令窗口改字顯示 為?
打開word,插入,輸入字符編碼8E63得到 ?,有些版本的Word能顯示出來,有些版本的不能顯示,按Alt+X ,插入到word,復制粘貼到 Visual Fox Pro 9的命令窗口改字能顯示 正常
上圖輸入E863無反應
按快捷鍵Alt+x后的效果
項目中需要對DBF的文件進行導入處理,上網搜了發現有java-dbf這個東西。實際應用中踩了不少坑,主要就是中文亂碼的問題。
InputStream in = new FileInputStream("D:\\test.dbf"); DBFReader reader = new DBFReader(in); reader.setCharactersetName("GBK"); for(int i = 0; i < reader.getFieldCount(); i++){ DBFField field = reader.getField(i); System.out.print(field.getName() + ","); } System.out.print("\r\n"); Object[] values; while ( (values = reader.nextRecord()) != null ){ for(Object value : values){ System.out.print(value.toString() + ","); } System.out.print("\r\n"); }
網上寫法千篇一律,大概就是這樣。問題來了DBF中具體數據的中文亂碼通過reader.setCharactersetName("GBK")解決了。
public DBFReader(InputStream in, Charset charset, boolean showDeletedRows) { try { this.showDeletedRows = showDeletedRows; this.inputStream = in; this.dataInputStream = new DataInputStream(this.inputStream); this.header = new DBFHeader(); this.header.read(this.dataInputStream, charset, showDeletedRows); setCharset(this.header.getUsedCharset()); /* it might be required to leap to the start of records at times */ int fieldSize = this.header.getFieldDescriptorSize(); int tableSize = this.header.getTableHeaderSize(); int t_dataStartIndex = this.header.headerLength - (tableSize + (fieldSize * this.header.fieldArray.length)) - 1; skip(t_dataStartIndex); this.mapFieldNames = createMapFieldNames(this.header.userFieldArray); } catch (IOException e) { DBFUtils.close(dataInputStream); DBFUtils.close(in); throw new DBFException(e.getMessage(), e); } }
其中header就是我們讀取的列名,列數所依靠的成員變量,但是這個變量在對象創建的時候就賦值好了。
這就導致了后來即使調用了setCharactersetName也解決不了列名亂碼問題。
所以我們要從根本上解決問題,創建對象的時候直接傳入charset對象。
public static void main(String[] args) throws FileNotFoundException { InputStream in = new FileInputStream("D:\\test.dbf"); Charset charset = Charset.forName("GBK"); DBFReader reader = new DBFReader(in,charset); for(int i = 0; i < reader.getFieldCount(); i++){ DBFField field = reader.getField(i); System.out.print(field.getName() + ","); } System.out.print("\r\n"); Object[] values; while ( (values = reader.nextRecord()) != null ){ for(Object value : values){ System.out.print(value.toString() + ","); } System.out.print("\r\n"); } }
感謝各位的閱讀,以上就是“怎么用java導出dbf文件生僻漢字”的內容了,經過本文的學習后,相信大家對怎么用java導出dbf文件生僻漢字這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。