2016 - 2024

感恩一路有你

java字符串转byte delphi中BYTE数组和String之间怎样相互转换?

浏览量:1510 时间:2021-03-12 08:38:10 作者:admin

delphi中BYTE数组和String之间怎样相互转换?

var

arrbyte:字节数组[0..2]

str1:字符串

i:整数

begin

对于i:=0 to Length(arrbyte)-1 do

str:=str IntToStr(arrbyte[i])//Byte[]to string

对于i:=0 to Length(str)-1 do

arrbyte[i]:=Byte(str[i])//字符串到字节[

]StrCopy(PChar(@arrbyte),PChar(str))//字符串到字节[

]end

怎样将Byte转换成字符串?

有两种方法:

方法1:

//string to byte

string stringmessage=“你好吗?"

控制台写入线(“{0}”,StringMessage)System.Text.ASCIIEncoding系统ASCII=新System.Text.ASCIIEncoding系统()

字节[]字节消息=ASCII.GetBytes(stringmessage)

//字节到字符串

字节[]字节消息System.Text.ASCIIEncoding系统ASCII=新System.Text.ASCIIEncoding系统()

字符串消息=ASCII.GetString(bytesmessage)

方法2:

//string to UTF-8 byte

string stringmessage=“你好,你好吗?Pi/u03c0日元/uffe5“System.Text.utf8编码UTF8=新System.Text.utf8编码()

byte[]bytesmessage=utf8。GetBytes(stringmessage)

//UTF-8字节到字符串

byte[]BytesMessageSystem.Text.utf8编码UTF8=新System.Text.utf8编码()

string stringmessage=utf8。GetString(bytesmessage)

delphi中怎样把string转为arrayofbyte?

下面是示例代码:

过程TForm1。Button1click(sender:tobject)var s:String AB:byte数组I:integerbegin s:=“this is a test”setlength(AB,length(s))for I:=1 to length(s)do AB[I]:=byte(s[I])end

在Java中,可以直接使用String类的构造函数将byte数组转换成字符串。要将字符串转换为字节数组,可以使用字符串类型的getbytes()方法进行转换,如下所示:

1。字符串到字节[

String STR=“Hello”//声明字符串

byte[]srtbyte=字符串getBytes()//使用string类的GetBytes方法进行转换

2。将byte[]转换为字符串

byte[]srtbyte//声明字节数组

string res=New string(srtbyte)//使用构造函数转换为字符串系统输出打印(RES)

您还可以设置编码模式,以便在转换字节时相互转换,如下所示:

string STR=“Hello”

byte[]srtbyte=null试试{

srtbyte=字符串getBytes(“UTF-8”)//设置转换的编码格式

string res=New string(srtbyte,“UTF-8”)系统输出打印(RES)

}catch(不支持的编码异常E){//可能存在不支持的编码格式和catch异常。

e.printStackTrace()

}

java字符串转byte bytes转字符串 hex字符串转byte

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。