When interacting with the server in Android development, encountering Java.io.IOException:Target host must not being null

Source: Internet
Author: User

When I encountered this problem, I also found long time on the internet. Found a problem very similar to this problem--java.lang.illegalstateexception:target host must not being null

This is reported in the IllegalStateException, translation is illegal state exception, this is the status of the URL, in general, will be the address is not correct (such as: At the beginning of the address is missing/HTTP).

However, I encountered Com.lidroid.xutils.exception.HttpException:java.io.IOException:Target host must not being null, ....

A IOException exception was reported here. In my program because of the illegal characters used in my URL: ' \ ', ' {', '} '

So, this time we need to escape the use of characters that are not available in the URL. is escaped with its hexadecimal. As follows:

URLString + = S.replace ("\" ","%22 "). Replace (" {","%7b "). Replace ("} ","%7d ");

When interacting with the server in Android development, encountering Java.io.IOException:Target host must not being null

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.