S
shine choi
Hi..All
I want to socket communication between PDA and Desktop PC.
The PDA is ipaq3850, ipqp3660.
It works well..
But, there are problems that when sending and receiveing
data using korean language, the data is invalid.
But, English's data are transfered well.
So i encoded the data below source code.
But, it doesn't work.
{
..
reader = new StreamReader(stream,Encoding.UTF8);
writer = new StreamWriter(stream,Encoding.UTF8);
..
receive_data = reader.ReadLine();
listbox1.Items.Add(receive_data);
..
}
I also used Encoding.Ascii, Encoding.Unicode.
But, it doesn't work.
How can i resolve it?
I must send and receive data which is written Korean
language.
Help me...
Have a nice day..
I want to socket communication between PDA and Desktop PC.
The PDA is ipaq3850, ipqp3660.
It works well..
But, there are problems that when sending and receiveing
data using korean language, the data is invalid.
But, English's data are transfered well.
So i encoded the data below source code.
But, it doesn't work.
{
..
reader = new StreamReader(stream,Encoding.UTF8);
writer = new StreamWriter(stream,Encoding.UTF8);
..
receive_data = reader.ReadLine();
listbox1.Items.Add(receive_data);
..
}
I also used Encoding.Ascii, Encoding.Unicode.
But, it doesn't work.
How can i resolve it?
I must send and receive data which is written Korean
language.
Help me...
Have a nice day..