我有这个格式页面
<html><head><script>
function sendForm(form)
{
form.value.value = "{ \"y\": " + form.example2.value + " }"
form.submit();
}
</script></head>
<body>
<form action="https://....WEBSITE..." method="post">
<input type="hidden" name="value">
number:<input type="text" name="example2">
<input type="button" value="Submit" onClick="sendForm(this.form);">
</form>
</body>
</html>
我想知道,如何将其转换为 android 中的 post 对象?我希望从我的 android 手机发送完全相同的数据,假设我有一个变量,其中包含我希望发送的整数和代表我的 url 的字符串。