现在的位置: 首页 > 综合 > 正文

Java中ASC码与字符互相转化

2011年06月20日 ⁄ 综合 ⁄ 共 456字 ⁄ 字号 评论关闭
package com.ljq.test;

/**
* Java中ASC码与字符互相转化
*
*
@author jiqinlin
*
*/
public class ASCTest {
private static int ascNum;
private static char strChar;

public static void main(String[] args) {
System.out.println(getAsc("a"));
System.out.println(backchar(98));
}

/**
* 字符转ASC
*
*
@param st
*
@return
*/
public static int getAsc(String st) {
byte[] gc = st.getBytes();
ascNum = (int) gc[0];
return ascNum;
}

/**
* ASC转字符
*
*
@param backnum
*
@return
*/
public static char backchar(int backnum) {
strChar = (char) backnum;
return strChar;
}

}

 

抱歉!评论已关闭.