JDK 自動編碼工具 詳解

2021-05-24 04:32:42 字數 1587 閱讀 9448

在jdk根目錄的bin資料夾有很多jdk中自帶了小工具,其中有一些工具還是蠻實用的,下面給大家介紹一下編碼工具native2ascii的簡單使用。

1、單個字串轉換命令,當然有時候看不見該選項,可以直接在dos下面進去

雙擊執行native2ascii.exe可執行程式,在命令視窗中直接輸入漢字按回車鍵後就可以看到轉換後的編碼。

如:2、轉換屬性檔案(.properties)命令

native2ascii -encoding utf-8

message_temp_zh_cn.properties  message_zh_cn.properties   

將message_zh_cn.properties編碼後輸出為message_zh_cn.properties。

其中的編碼-encoding、utf-8為可選項。

3、反向編碼屬性檔案**

native2ascii -reverse message_zh_ch.properties message_zh_ch.txt  

native2ascii -reverse message_zh_ch.properties message_zh_ch.txt
新增-reverse引數即可實現反向編碼。

示例:message_zh_ch_temp.properties**

error.adduser.uname.null=使用者名為空原始檔    

error.adduser.uname.vali=請輸入合法的使用者名稱   

error.adduser.uname.null=使用者名為空原始檔 

error.adduser.uname.vali=請輸入合法的使用者名稱

codingconvert.bat批處理檔案命令

native2ascii -encoding gb2312 message_zh_ch_temp.properties message_zh_ch.propertiesen  

native2ascii -encoding gb2312 message_zh_ch_temp.properties message_zh_ch.propertiesen
目標檔案 message_zh_ch.properties命令

error.adduser.uname.null=/ufffd/u3126/ufffd/ufffd/ufffd/u8d1f/u7ecc/ufffd   

error.adduser.upass.null=/u7487/u75af/ufffd/ufffd/u30e5/ufffd/ufffd/ufffd     

error.adduser.uname.null=/ufffd/u3126/ufffd/ufffd/ufffd/u8d1f/u7ecc/ufffd

error.adduser.upass.null=/u7487/u75af/ufffd/ufffd/u30e5/ufffd/ufffd/ufffd

當雙擊encodingconvert.bat批處理檔案後,程式會自動建立message_zh_ch.properties檔案

message_zh_ch.properties即為轉換後的編碼檔案。

需要的就用吧

jdk 自動編碼工具native2ascii

在jdk根目錄的bin資料夾有很多jdk中自帶了小工具,其中有一些工具還是蠻實用的,下面給大家介紹一下編碼工具native2ascii的簡單使用。native2ascii雙擊執行native2ascii.exe可執行程式,在命令視窗中直接輸入漢字按回車鍵後就可以看到轉換後的編碼。native2asc...

MSSQL 自動編碼設計

通常我們在做單據號碼 單據號 年月日 流水碼 po 081112 001 日期部分通常是用的是getdate 函式來處理。如果使用者義函式中使用getdate函式將會收到這樣的錯誤資訊 在函式內部正確使用了 getdate 出現這樣的錯誤的原因。使用者定義函式不允許使用不確定函式,而getdate恰...

自動編碼器

自動編碼器基本概念 自動編碼器 autoencoder 是神經網路的一種,一般來講自動編碼器包括兩部分 編碼器和解碼器,編碼器和解碼器相互串聯合作,實現資料的降維或特徵學習,現在也廣泛用於生成模型中.在深度學習中,autoencoder可用於在訓練階段開始前,確定權重矩陣的初始值.左側為encode...