Android httppost 与 httpget
首先。抱歉我的英语不好。
我想编写一个程序,可以使用 post/get 参数与我的网站进行通信,但是当我使用 http://xyz.xyz/?server&user=this&pass=that 这是行不通的...如果我能做到的话,我该如何解决这个问题。
sintax
GET
- 用户
- 名密码
POST
- 消息
- 验证码
我知道存在两种方法,但我不知道这两种方法一起使用的进展。
(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
- username
- password
POST
- message
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有完全理解您的问题,但如果您想登录网站(HTTP POST 等),下面的链接可能会有所帮助。
http://www.androidsnippets.com/executing-a-http -post-request-with-httpclient
另外注意,示例中给出的“stringdata”和“id”是html代码中输入参数的id。
根据你的问题,我会说你这样做:
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.
According to your question, I'd say you do it like this: