Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个适用于事务的应用程序。在这个应用程序中,我向用于发送各种值的事务的 API 发送请求。响应采用 HTML 格式。我正在解析响应,但响应没有完全转换。
帮助我了解此代码以及是否存在任何其他仅通过帖子将变量发送到 url 的方法
使用 webview 查看结果并通过 url 传递所有值。你可以做到这一点
WebView.postUrl(url, EncodingUtils.getBytes(postData, "BASE64"));
postData 是参数的字符串。