通过代码触发php脚本
我希望我的应用程序触发 php 脚本。基本上,它所需要做的就是访问带有一些 get 变量的 url(例如 www.example.com/foo.php?id=1)。最好不打开任何浏览器。
I want my app to trigger a php script. Basically, all it needs to do is visit an url with some get variables (something like www.example.com/foo.php?id=1). Preferably without opening any browser.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是来自 Android SDK 网站的资源,演示了 HttpUrlConnection 对象的实际操作:
http: //developer.android.com/reference/java/net/HttpURLConnection.html
此调用将以编程方式进行,不会向用户显示任何内容。
Here is a resource from the Android SDK website that demonstrates the HttpUrlConnection object in action:
http://developer.android.com/reference/java/net/HttpURLConnection.html
This call would be made programmatically, without showing anything to the user.