Hi
I have a problem, I have a string which needs to be converted to a
byte array, then have the string representation of this array stored
in an AD attribute. This string attribute then has to be read and the
string representation of the byte array has to be converted back to
the original byte array and converted back to the original string -
confused yet?
in psuedo
1.str="Hello World"
2.convert str to byte()
3.convert byte() to str2 = 272010101080108 011103208701110 114010801000
4.store str2
5.read str2
6.convert str2 to byte()
7.convert byte() to str
I am getting stuck on step 6, converting the representation of the
byte array back to the original byte array
any help woould be grately appreciated.
cheers
David
I have a problem, I have a string which needs to be converted to a
byte array, then have the string representation of this array stored
in an AD attribute. This string attribute then has to be read and the
string representation of the byte array has to be converted back to
the original byte array and converted back to the original string -
confused yet?
in psuedo
1.str="Hello World"
2.convert str to byte()
3.convert byte() to str2 = 272010101080108 011103208701110 114010801000
4.store str2
5.read str2
6.convert str2 to byte()
7.convert byte() to str
I am getting stuck on step 6, converting the representation of the
byte array back to the original byte array
any help woould be grately appreciated.
cheers
David
Comment