Android socket uses PrintWriter and BufferedReader to send and receive garbled problem resolution

Source: Internet
Author: User
Tags set set

The project uses Android and C + + communication, choose the way to send characters with the socket, the first use of the code is:

Socket=new Socket (); Inetsocketaddress isa = new Inetsocketaddress (ip_str, port);     Socket.connect (ISA, 100); PrintWriter out=new PrintWriter (Socket.getoutputstream (), true); BufferedReader recvbuf=new BufferedReader (New InputStreamReader (Socket.getinputstream ()));


In this way, the character set cannot be set, whether it is sent or received if it is different from the server's character set, it will appear garbled.

Finally, change the procedure to:

Socket=new Socket (); Inetsocketaddress isa = new Inetsocketaddress (ip_str, port);     Socket.connect (ISA, 100); PrintWriter out=new PrintWriter (New BufferedWriter (New OutputStreamWriter (Socket.getoutputstream (), "gb2312"), True ); BufferedReader recvbuf=new BufferedReader (New InputStreamReader (Socket.getinputstream (), "gb2312"));


The character set set by my server is gb2312. We can set the character set according to their own needs, the principle is that they send and receive the character set to be consistent, their own reception and the other party's transmission character set.

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.