1个回答
2013-03-29
展开全部
在.NET中转化ASCII码,请您使用System.Text.ASCIIEncoding类。它提供了GetBytes()和GetChars()来实施转换。当然,您还可以在.NET联机手册中找到其他有用的函数。
下面是一个转换的例子:
////////////////////////////////////////////////////////////////////////////////////
using System;
using System.Text;
namespace ConsoleApplication3
{
class Class1
{
static void Main(string[] args)
{
// UTF-16字符串
string MyString = "Hello World ";
ASCIIEncoding AE1 = new ASCIIEncoding();
byte[] ByteArray1 = AE1.GetBytes(MyString);
//打印出ASCII码
for(int x = 0;x <= ByteArray1.Length - 1; x++)
{
Console.Write( "{0} ", ByteArray1[x]);
}
Console.Write( "\n ");
//把ASCII码转化为对应的字符
ASCIIEncoding AE2 = new ASCIIEncoding();
byte[] ByteArray2 = {72,101,108,108,111,32,87,111,114,108,100};
char[] CharArray = AE2.GetChars(ByteArray2);
for(int x = 0;x <= CharArray.Length - 1; x++)
{
Console.Write(CharArray[x]);
}
Console.Write( "\n ");
}
}
}
下面是一个转换的例子:
////////////////////////////////////////////////////////////////////////////////////
using System;
using System.Text;
namespace ConsoleApplication3
{
class Class1
{
static void Main(string[] args)
{
// UTF-16字符串
string MyString = "Hello World ";
ASCIIEncoding AE1 = new ASCIIEncoding();
byte[] ByteArray1 = AE1.GetBytes(MyString);
//打印出ASCII码
for(int x = 0;x <= ByteArray1.Length - 1; x++)
{
Console.Write( "{0} ", ByteArray1[x]);
}
Console.Write( "\n ");
//把ASCII码转化为对应的字符
ASCIIEncoding AE2 = new ASCIIEncoding();
byte[] ByteArray2 = {72,101,108,108,111,32,87,111,114,108,100};
char[] CharArray = AE2.GetChars(ByteArray2);
for(int x = 0;x <= CharArray.Length - 1; x++)
{
Console.Write(CharArray[x]);
}
Console.Write( "\n ");
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询