Special Points of the socket communication (Objetive-C) client and (Java) Server

Source: Internet
Author: User

Some time ago, during sokcet communication under Objetive-C, when the C ++ program was used as the server, everything was normal. When Java was used as the server, neither party received the data, after reading some documents, sort out the notes

1. Press enter and line feed at the end of the message.

When Objetive-C sends data, add "\ r \ n" to the end"

_ Datatosend = [nsdata datawithbytes: "This is a test \ n" Length: 15];

This is because the Java server uses functions similar to Readline () to read the content in the buffer.


2. The encoding method must correspond

ASCII code

Nsdata * Data = [[nsdata alloc] initwithdata: [Response datausingencoding: nsasciistringencoding];

UTF-8 Coding

Nsdata * Data = [[nsdata alloc] initwithdata: [Response datausingencoding: nsutf8stringencoding];


The same encoding method is used.


 





Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.