科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道基础软件有关手机中文问题传输的解决办法

有关手机中文问题传输的解决办法

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

本文给出了手机中文问题传输的解决办法,比如把双字节字符转换成\uXXXX,ASIIC码在前面补00;把手机端的字符编码成ISO-8859-1,传给服务器等,供大家参考!

作者:佚名 来源:赛迪网社区 2007年9月1日

关键字: 手机 中文问题 传输

  • 评论
  • 分享微博
  • 分享邮件

/**

* Write the String data

*

* @param out

* @param value

*/

public static void writeUnicode(final DataOutputStream out, final String value)

throws ActionException {

try {

final String unicode = StringFormatter.gbEncoding( value );

final byte[] data = unicode.getBytes();

final int dataLength = data.length;

System.out.println( "Data Length is: " + dataLength );

System.out.println( "Data is: " + value );

out.writeInt( dataLength );

out.write( data, 0, dataLength );

} catch (IOException e) {

throw new ActionException( IMDefaultAction.class.getName(), e.getMessage() );

}

}

以下代码是gbEncoding()方法,把双字节字符转换成\uXXXX,ASIIC码在前面补00。

/**

* This method will encode the String to unicode.

*

* @param gbString

* @return

*/

代码:

public static String gbEncoding( final String gbString ) {

char[] utfBytes = gbString.toCharArray();

String unicodeBytes = "";

for( int byteIndex = 0; byteIndex < utfBytes.length; byteIndex ++ ) {

String hexB = Integer.toHexString( utfBytes[ byteIndex ] );

if( hexB.length() <= 2 ) {

hexB = "00" + hexB;

}

unicodeBytes = unicodeBytes + "\\u" + hexB;

}

System.out.println( "unicodeBytes is: " + unicodeBytes );

return unicodeBytes;

}

在客户端收到服务器的数据,先将其一个一个字符解码。双字节显示正常。

代码:

/**

* This method will decode the String to a recognized String

* in ui.

* @param dataStr

* @return

*/

private StringBuffer decodeUnicode( final String dataStr ) {

int start = 0;

int end = 0;

final StringBuffer buffer = new StringBuffer();

while( start > -1 ) {

end = dataStr.indexOf( "\\u", start + 2 );

String charStr = "";

if( end == -1 ) {

charStr = dataStr.substring( start + 2, dataStr.length() );

} else {

charStr = dataStr.substring( start + 2, end);

}

char letter = (char) Integer.parseInt( charStr, 16 ); // 16进制parse整形字符串。

buffer.append( new Character( letter ).toString() );

start = end;

}

return buffer;

}

客户端到服务器:

客户端使用下面方法把手机端的字符编码成ISO-8859-1,传给服务器。

代码:

/**

* write the String data

* @param value

* @param outData

*/

private void writeSjis(DataOutputStream outData, String value) {

try {

byte[] data = null;

// data = ( value ).getBytes( "UTF-8" );

data = ( value ).getBytes( "ISO8859_1" );

outData.writeInt(data.length);

outData.write(data, 0, data.length);

System.out.println(" data.length: " + data.length);

System.out.println(" data.value: " + value);

} catch (Exception ex) {

System.out.println(" write error ");

ex.printStackTrace();

}

}

服务器端收到客户端字符流,是用下面方法将其转为UTF-8,以后的操作都是基于UTF-8编码。SQL Server可能会由于内码不通有不同的变换,所以存取数据库是还要是具体的DB内码作相应的处理。

代码:

/**

*

* @param iso

* @return

*/

public static String isoToUtf( final String iso ) {

String utfString = iso;

if( iso != null ) {

try {

utfString = new String( iso.getBytes( "ISO-8859-1" ), "UTF-8" );

} catch ( UnsupportedEncodingException e ) {

utfString = iso;

}

} else {

utfString = "";

}

return utfString;

}

注:本方法应该不是最有效的,但是只要手机支持unicode的gb2312编码,应该都可以显示正常。

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章