将<u + 5085> <u + 78ca>解码回中文字符串

时间:2019-03-26 13:39:36

标签: r encoding utf-8

我有一个包含各种语言的csv文件。是否有任何字典可以匹配 与适当的字符串?我无法更改文件的编码,即UTF-8。

我正在使用Windows操作系统。

我可以做些类似的事情

private WebChromeClient intWebChromeClient = new WebChromeClient()
  {
    @Override
    public void onReceivedTitle(WebView view, String title)
    {
      if (extWebChromeClient != null)
      {
        extWebChromeClient.onReceivedTitle(view, title);
      }
    }
 ...

在Windows上吗?

最后,我想将文本发送到Google api进行翻译,但以当前形式它无法识别。

谢谢。

0 个答案:

没有答案