将图像从 SD 卡上传到 Lamp 服务器
我正在尝试将图像从 Android 设备上传到 LAMP 服务器,我将在其中通过 PHP 处理表单。
我有一个图像视图,已使用 SD 卡中的图像路径设置
我想通过单击按钮上传此图像
I am trying to upload an image from the android device to a LAMP server where i will handle the form through PHP.
i have an image view which has been set with the image path from the SD card
i want to upload this image on click of a button
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个指导您的链接
http://getablogger.blogspot.com/2008/01/android-how-to-post-file-to-php-server.html
here's a link that will guide you
http://getablogger.blogspot.com/2008/01/android-how-to-post-file-to-php-server.html
您可以通过 POST(因此,文件)从 Android 上传内容。只需将其作为 POST 发送到您的 PHP(使用“上传”按钮作为提交),就像您在网页上创建表单一样,然后编写一个 PHP 脚本来处理保存文件。
You can upload things from Android through POST (and therefore, FILES). Simply send it up to your PHP as a POST (with the "upload" button being the submit), just like you would do a form on a webpage, then write a PHP script to handle saving the file.