本文介绍了无法将%E9解码为utf8的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我在解码某些编码字符时遇到了一些麻烦.我需要解码的是%E9,我有一个像这样的字符串D%E9bardeur和degr%E9我在Java类中所做的工作如下:

I'm having some trouble decoding some encoding char.What i need to decode is the %E9, i have a string like this D%E9bardeur and degr%E9What i do in my java class, is the following:

try
      {
        System.out.println(o);// test
        o = URLDecoder.decode((String) o, "UTF-8");
      }
      catch (UnsupportedEncodingException e)
      {
        e.printStackTrace();
      }

完成此操作后,我得到的是

After this operation, what i get is

D�bardeur and degr�

当我不解码为utf-8时也会发生同样的情况

The very same happens when i dont decode to utf-8

有什么建议吗?

推荐答案

%E9不是UTF-8.

%E9 is not UTF-8.

对此进行解码的正确方法是:

The correct way to decode this would be:

URLDecoder.decode((String) o, "ISO-8859-1")

这篇关于无法将%E9解码为utf8的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 14:28