美文网首页
EncodingUtils.getBytes() 过时了怎么办

EncodingUtils.getBytes() 过时了怎么办

作者: F野鸽子 | 来源:发表于2017-03-16 15:46 被阅读0次
    webview.postUrl(url, EncodingUtils.getBytes(arg, "base64");
    

    提示 EncodingUtils 过时了怎么办?

    改成如下:

    WebView webview = new WebView(this);
    setContentView(webview);
    String url = "http://www.example.com";
    String postData = "username=" + URLEncoder.encode(my_username, "UTF-8") + "&password=" + URLEncoder.encode(my_password, "UTF-8");
    webview.postUrl(url,postData.getBytes());
    

    相关文章

      网友评论

          本文标题:EncodingUtils.getBytes() 过时了怎么办

          本文链接:https://www.haomeiwen.com/subject/hwrjnttx.html