Hai Friends, i want read the string from server and to write in bytes to openOutputStream.
Example :
byte bytestr[]={0x1D,0x28,0x4C,0x87,0x02,0x30,0x43};
StreamConnection con =(StreamConnection)Connector.open(serverConnectionString);
os = con.openOutputStream();
os.write(bytestr);
i want to read bytestr from server as string using httpconnection, and to convert to byte array,how can i implement this.
please help me for this problem.