Android httppost 与 httpget

发布于 2024-12-27 06:16:48 字数 471 浏览 1 评论 0原文

首先。抱歉我的英语不好。

我想编写一个程序,可以使用 post/get 参数与我的网站进行通信,但是当我使用 http://xyz.xyz/?server&user=this&pass=that 这是行不通的...如果我能做到的话,我该如何解决这个问题。

sintax

GET

  1. 用户
  2. 名密码

POST

  1. 消息
  2. 验证码

我知道存在两种方法,但我不知道这两种方法一起使用的进展。

(httppost / httpget 方法;但在一起......我需要它)

谢谢你的帮助

First of all. Sorry for my bad enghlish.

I want to write a program what can communicate with my website with post/get parameters but when i run the progress httppost with http://xyz.xyz/?server&user=this&pass=that
it's not work... how can i fix this problem if i can do that.

the sintax

GET

  1. username
  2. password

POST

  1. message
  2. captcha

I know exists two method for this but i don't know one progress for these two method with together.

(httppost / httpget methods; but together... i need it)

Thank you for helping

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怀里藏娇 2025-01-03 06:16:48

我没有完全理解您的问题,但如果您想登录网站(HTTP POST 等),下面的链接可能会有所帮助。

http://www.androidsnippets.com/executing-a-http -post-request-with-httpclient

另外注意,示例中给出的“stringdata”和“id”是html代码中输入参数的id。

        <input id="___THIS HERE___" value="..etc" >

根据你的问题,我会说你这样做:

...
        nameValuePairs.add(new BasicNameValuePair("user", "this"));
        nameValuePairs.add(new BasicNameValuePair("pass", "that"));
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
...

I did not fully understand your question, but if you want to login to a website (HTTP POST and all), the below link might help.

http://www.androidsnippets.com/executing-a-http-post-request-with-httpclient

Also, note, the "stringdata" and "id" given in the example is the id of the input parameter in the html code.

        <input id="___THIS HERE___" value="..etc" >

According to your question, I'd say you do it like this:

...
        nameValuePairs.add(new BasicNameValuePair("user", "this"));
        nameValuePairs.add(new BasicNameValuePair("pass", "that"));
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文