发送图像到网络服务器并接收信息
我是 android 和 java 新手,所以请容忍我使用的不正确术语。我正在编写一个应用程序,帮助识别图像的位置。
- 从相机捕获图像
- 将捕获的图像发送到 Web 服务器
- 侦听并接收来自 Web 服务器的有关捕获图像的位置的信息并显示给用户。
因此主要问题是:
- 将图像发送到 Web 服务器
- 从 Web 服务器接收信息
I am new to android and java so please bear with me with the incorrect terms used. I am programming an application that helps to identify the location with an image.
- Capture image from camera
- Send captured image to a web server
- Listen and receive information from the web server regarding the location of the captured image and display to user.
Hence main problems are:
- Send image to web server
- Receive information from web server
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用这个方法(我从某个地方得到的,但不知道从哪里来),它对我有用:
该文件将位于网络服务器上的 $_FILES 数组中。
I use this method (which i got from somewhere, but dont know where from), it works for me:
The file will in $_FILES array on your webserver.