http://www.zeali.net/entry/19
本文提供一个java实现中文字符繁简体互换的zip包以及主要的源代码实现说明。
繁简体(GB<=>Big5)中文字符的转化实现原理很简单,就是根据两种码表的编码规则,创建两者之间的字符对应关系表,通过程序读取这个映射表来自动查出另一种编码方式下对应字符的字节编码,从而进行逐字节的内容替换。
主功能实现的GB2Big5.java源代码如下: 已经加入里系统支持的一个类库的源代码,这个是完整版。
- package net.java2000.tools;
- import java.io.BufferedOutputStream;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.io.InputStream;
- public class GB2Big5 {
- private static GB2Big5 pInstance = null;
- private String s_big5TableFile = null;
- private String s_gbTableFile = null;
- private byte[] b_big5Table = null;
- private byte[] b_gbTable = null;
-
- private GB2Big5(String sgbTableFile, String sbig5TableFile) throws NullPointerException {
- s_big5TableFile = sbig5TableFile;
- s_gbTableFile = sgbTableFile;
- if (null == b_gbTable) {
- b_gbTable = getBytesFromFile(sgbTableFile);
- }
- if (null == b_big5Table) {
- b_big5Table = getBytesFromFile(sbig5TableFile);
- }
- if (null == b_gbTable) {
- throw new NullPointerException("No gb table can be load");
- }
- if (null == b_big5Table) {
- throw new NullPointerException("No big5 table can be load");
- }
- }
- public static synchronized GB2Big5 getInstance() {
-
- return getInstance("/net/java2000/tools/gb-big5.table", "/net/java2000/tools/big5-gb.table");
- }
- public static synchronized GB2Big5 getInstance(String sgbTableFile, String sbig5TableFile) {
- if (null == pInstance) {
- try {
- pInstance = new GB2Big5(sgbTableFile, sbig5TableFile);
- } catch (Exception e) {
- System.err.println(e.toString());
- pInstance = null;
- }
- }
- return pInstance;
- }
-
- protected synchronized void resetBig5Char(String gbChar, String big5Char) throws Exception {
- byte[] Text = new String(gbChar.getBytes(), "GBK").getBytes("GBK");
- byte[] TextBig5 = new String(big5Char.getBytes(), "BIG5").getBytes("BIG5");
- int max = Text.length - 1;
- int h = 0;
- int l = 0;
- int p = 0;
- int b = 256;
- for (int i = 0; i < max; i++) {
- h = (int) (Text[i]);
- if (h < 0) {
- h = b + h;
- l = (int) (Text[i + 1]);
- if (l < 0) {
- l = b + (int) (Text[i + 1]);
- }
- if (h == 161 && l == 64) {
- ;
- } else {
- p = (h - 160) * 510 + (l - 1) * 2;
- b_gbTable[p] = TextBig5[i];
- b_gbTable[p + 1] = TextBig5[i + 1];
- }
- i++;
- }
- }
- BufferedOutputStream pWriter = new BufferedOutputStream(new FileOutputStream(s_gbTableFile));
- pWriter.write(b_gbTable, 0, b_gbTable.length);
- pWriter.close();
- }
-
- protected synchronized void resetGbChar(String big5Char, String gbChar) throws Exception {
- byte[] TextGb = new String(gbChar.getBytes(), "GBK").getBytes("GBK");
- byte[] Text = new String(big5Char.getBytes(), "BIG5").getBytes("BIG5");
- int max = Text.length - 1;
- int h = 0;
- int l = 0;
- int p = 0;
- int b = 256;
- for (int i = 0; i < max; i++) {
- h = (int) (Text[i]);
- if (h < 0) {
- h = b + h;
- l = (int) (Text[i + 1]);
- if (l < 0) {
- l = b + (int) (Text[i + 1]);
- }
- if (h == 161 && l == 64) {
- ;
- } else {
- p = (h - 160) * 510 + (l - 1) * 2;
- b_big5Table[p] = TextGb[i];
- b_big5Table[p + 1] = TextGb[i + 1];
- }
- i++;
- }
- }
- BufferedOutputStream pWriter = new BufferedOutputStream(new FileOutputStream(s_big5TableFile));
- pWriter.write(b_big5Table, 0, b_big5Table.length);
- pWriter.close();
- }
-
- public byte[] gb2big5(String inStr) throws Exception {
- if (null == inStr || inStr.length() <= 0) {
- return "".getBytes();
-
- }
- byte[] Text = new String(inStr.getBytes(), "GBK").getBytes("GBK");
- int max = Text.length - 1;
- int h = 0;
- int l = 0;
- int p = 0;
- int b = 256;
- byte[] big = new byte[2];
- for (int i = 0; i < max; i++) {
- h = (int) (Text[i]);
- if (h < 0) {
- h = b + h;
- l = (int) (Text[i + 1]);
- if (l < 0) {
- l = b + (int) (Text[i + 1]);
- }
- if (h == 161 && l == 64) {
- big[0] = big[1] = (byte) (161 - b);
- } else {
- p = (h - 160) * 510 + (l - 1) * 2;
- try {
- big[0] = (byte) (b_gbTable[p] - b);
- } catch (Exception e) {
- big[0] = 45;
- }
- try {
- big[1] = (byte) (b_gbTable[p + 1] - b);
- } catch (Exception e) {
- big[1] = 45;
- }
- }
- Text[i] = big[0];
- Text[i + 1] = big[1];
- i++;
- }
- }
- return Text;
-
- }
-
- public String big52gb(String inStr) throws Exception {
- if (null == inStr || inStr.length() <= 0) {
- return "";
- }
- byte[] Text = new String(inStr.getBytes(), "BIG5").getBytes("BIG5");
- int max = Text.length - 1;
- int h = 0;
- int l = 0;
- int p = 0;
- int b = 256;
- byte[] big = new byte[2];
- for (int i = 0; i < max; i++) {
- h = (int) (Text[i]);
- if (h < 0) {
- h = b + h;
- l = (int) (Text[i + 1]);
- if (l < 0) {
- l = b + (int) (Text[i + 1]);
- }
- if (h == 161 && l == 161) {
- big[0] = (byte) (161 - b);
- big[1] = (byte) (64 - b);
- } else {
- p = (h - 160) * 510 + (l - 1) * 2;
- try {
- big[0] = (byte) (b_big5Table[p] - b);
- } catch (Exception e) {
- big[0] = 45;
- }
- try {
- big[1] = (byte) (b_big5Table[p + 1] - b);
- } catch (Exception e) {
- big[1] = 45;
- }
- }
- Text[i] = big[0];
- Text[i + 1] = big[1];
- i++;
- }
- }
- return new String(Text);
- }
-
- private static byte[] getBytesFromFile(String inFileName) {
- try {
- InputStream in = GB2Big5.class.getResourceAsStream(inFileName);
- byte[] sContent = StreamConverter.toByteArray(in);
- in.close();
- return sContent;
-
- } catch (Exception e) {
- e.printStackTrace();
- return null;
- }
- }
- public static void main(String[] args) throws Exception {
- if (args.length < 2) {
- System.out.println("Usage: net.java2000.tools.GB2Big5 [-gb | -big5] inputstring");
- System.exit(1);
- return;
- }
- boolean bIsGB = true;
- String inStr = "";
- for (int i = 0; i < args.length; i++) {
- if (args[i].equalsIgnoreCase("-gb")) {
- bIsGB = true;
- } else if (args[i].equalsIgnoreCase("-big5")) {
- bIsGB = false;
- } else {
- inStr = args[i];
- }
- }
- GB2Big5 pTmp = GB2Big5.getInstance();
- String outStr = "";
- if (bIsGB) {
- outStr = pTmp.big52gb(inStr);
- } else {
- outStr = new String(pTmp.gb2big5(inStr), "BIG5");
- }
- System.out.println("String [" + inStr + "] converted into:\n[" + outStr + "]");
- }
- }
- class StreamConverter {
- public StreamConverter() {
- }
- public static byte[] toByteArray(InputStream input) throws IOException {
- int status = 0;
- int totalBytesRead = 0;
- int blockCount = 1;
- byte dynamicBuffer[] = new byte[5000 * blockCount];
- byte buffer[] = new byte[5000];
- boolean endOfStream = false;
- do {
- if (endOfStream)
- break;
- int bytesRead = 0;
- if (input.available() != 0) {
- status = input.read(buffer);
- endOfStream = status == -1;
- if (!endOfStream)
- bytesRead = status;
- } else {
- status = input.read();
- endOfStream = status == -1;
- buffer[0] = (byte) status;
- if (!endOfStream)
- bytesRead = 1;
- }
- if (!endOfStream) {
- if (totalBytesRead + bytesRead > 5000 * blockCount) {
- blockCount++;
- byte newBuffer[] = new byte[5000 * blockCount];
- System.arraycopy(dynamicBuffer, 0, newBuffer, 0, totalBytesRead);
- dynamicBuffer = newBuffer;
- }
- System.arraycopy(buffer, 0, dynamicBuffer, totalBytesRead, bytesRead);
- totalBytesRead += bytesRead;
- }
- } while (true);
- byte result[] = new byte[totalBytesRead];
- if (totalBytesRead != 0)
- System.arraycopy(dynamicBuffer, 0, result, 0, totalBytesRead);
- return result;
- }
- }
由于这里不能上传附件,所需要的2个字体对照表,请到这里下载,或者到原作者的网页下载。那里还有完整的项目包
http://www.java2000.net/p8902
<script type="text/javascript">
</script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
分享到:
相关推荐
这个压缩包中的文件“繁简体(GB=Big5)字符串转化的JAVA方式实现”很可能是一个Java源代码文件或一个包含多个源代码文件的项目,它可能提供了以下功能: 1. **GB2312到BIG5的转换**:使用Java的`CharsetEncoder`和`...
"gb2big5.js"则很可能是一个JavaScript文件,它的功能可能是实现GBK到Big5的字符编码转换。JavaScript是一种广泛使用的客户端脚本语言,常用于网页交互和数据处理。在这个场景下,该文件可能包含了一个函数或类,...
3. 繁简体字库:实现繁简字体转换,关键在于拥有正确的字库。易语言社区中,有一些开发者提供了转换字库,如“神2”提供的转换类,就是基于这样的字库进行开发的。这些字库包含了简体字到繁体字,以及繁体字到简体字...
训练完成后,模型可以集成到各种应用程序中,实现高效准确的繁简体转换。同时,对于学术研究者来说,这个数据集也可用于评估和比较不同转换算法的性能,推动NLP技术的发展。总之,“繁简体转换词库.zip”提供了一个...
提到的压缩包中的文件`RockfordWei-GBig-eb3c5c7`可能是一个名为`GBig`的第三方Swift库,它专门用于字符串的繁简体转换。使用这样的库可以简化代码,并提供更便捷的API。不过,由于没有具体的库代码,这里无法给出...
在IT领域,文本处理是一项重要的任务,特别是在处理中文文本时,由于存在繁体中文和简体中文的区别,有时需要进行繁简体之间的转换。"繁简体互换"就是一个专门解决这个问题的小软件,它能够方便地帮助用户在繁体中文...
在VB6(Visual Basic 6)编程环境中,开发者可以利用内置的内码转换功能来实现中文繁简体的转换。这种转换是通过处理字符编码来完成的,涉及到字符集、编码方式以及字符串处理等核心概念。以下是关于VB6中中文繁简体...
繁简体转换程序 欢迎使用。。。。
一个非常好用繁简体转换js 调用方法。 JS繁简切换 Code By Sundj. 网络上有一个Edited by tMosport写的JS繁简切换的脚本,我觉得不太方便用 参考了tMosport的代码重写了这个脚本。希望对你有所有帮助。 用法: ...
"EXCEL繁简体互转工具"就是专门为此设计的实用软件,它能够方便快捷地帮助用户完成Excel表格中文字的繁简转换,提高工作效率。 简体中文和繁体中文虽然都是汉字,但在字形、用词和书写习惯上存在一定的差异。简体...
android java 繁简体互相转换jar包
5. **编程开发**:在开发支持繁简体转换的软件或应用时,对照表是重要的参考资源,可以提高转换算法的精确度。 总的来说,这份“汉字繁简体对照表”是学习和使用汉字的重要辅助工具,不仅方便了日常的繁简转换需求...
本文将深入探讨繁简体转换的方法,包括技术实现与显示编码问题,以及如何确保数据在数据库中正确存储。 ### 一、繁简体转换的技术实现 #### 使用Microsoft.VisualBasic.dll实现繁简转换 在.NET框架下,利用`...
16进制转字符串,字符串转Unicode,Unicode转字符串,简体转繁体(GB2312转GBK),繁体转简体(GBK转GB2312),繁体转BIG5(GBK转BIG5),BIG5转繁体(BIG5转GBK),字符串转UTF8,UTF8转字符串,各种格式化操作,删空格,删句号...
一个js做的中文繁简体转换,就一个html使用非常方便
- **从简体到繁体转换**:当`@toBIG`为1时,函数遍历`codetable`中的每一对繁简体字符,使用`REPLACE`函数将`@str`中的所有简体字符替换为其对应的繁体字符。 - **从繁体到简体转换**:当`@toBIG`不等于1时,进行...
繁简字体转换算法有很多,最简单的就是将body的innerHTML中的每个字符都进行检查。但是,这种算法的效率非常低,遇到复杂一点的网页甚至会假死。因此,这种算法不可取。研究了网上相关的算法,认为将针对Windows对象...
### Java正则表达式判断字符串是否包含中文 在日常的软件开发过程中,我们经常会遇到需要对输入的字符串进行校验的情况。例如,在处理用户输入、文本分析或数据清洗时,可能需要判断一个字符串中是否包含中文字符。...
同时,"Readme-Big5.txt"、"Readme-GBK.txt"和"Readme-Eng.txt"这三份文件则是软件的使用说明,分别对应Big5编码(常用于繁体中文)、GBK编码(简体中文扩展)和英文版本的阅读指南,帮助用户了解软件的详细信息和...