android - 编码和解码字符串定义为url

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android - 编码和解码字符串定义为url相关的知识,希望对你有一定的参考价值。

如何编码和解码或解析字符串,使其读取为url?

我尝试了两件事:

  1. URLencoder.encode
  2. Uri.encode

但响应显示错误400

在这里,我附上了代码,请看下面的内容

 searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
        @Override
        public boolean onQueryTextSubmit(String query) {
            try {
                progressDialog.setMessage("Mencari...");
                showDialog();
                jobList.clear();

                String queryEncode = AppConfig.URL_GETJOBS + Uri.encode(query);


  //String queryEncode = URLEncoder.encode(query, "UTF-8");

//String queryDecode = AppConfig.URL_GETJOBS + URLDecoder.decode(queryEncode, "UTF-8");

                Log.d(TAG, "onQueryTextSubmit: " + getJobs(queryEncode));
                getJobs(queryEncode);
                homeRecyclerViewAdapter.notifyDataSetChanged();
                hideDialog();
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }
            return false;
        }

        @Override
        public boolean onQueryTextChange(String newText) {
            return false;
        }
    });

这里响应错误400 on logd:(https://i.stack.imgur.com/ZjbgY.png

邮差200的回复OK(成功)(qazxsw poi)

答案

答案是您无法使用ip 192.168.43.142访问该地址,因为这是您计算机的本地主机。

https://i.stack.imgur.com/YER6K.png

如果你使用邮递员做同样的事情,你真的在​​你已经访问过的同一台电脑上做。

enter image description here

以上是关于android - 编码和解码字符串定义为url的主要内容,如果未能解决你的问题,请参考以下文章

什么是URL编码和URL解码?

我来教你如何将URL进行编码和解码

怎样用jquery编码和解码url

WebUtility(提供在处理 Web 请求时用于编码和解码 URL 的方法。)

什么是URL编码和URL解码

浏览器URL中 encodeURIComponent()加密和decodeURIComponent()解码