如何将SD卡上的3gp文件上传到服务器?
经过无数次的头痛和浪费时间后,我设法让 AudioRecorder 在 Android 上工作,并将文件存储在我的 SD 卡上。我现在想做的是将这个文件发送到应用程序内的服务器。因此,当用户点击“提交”时...它会发送 .3gp 文件。这可能吗?谢谢
After countless headaches and time wasted I managed to get the AudioRecorder working for Android and have a file stored on my SDcard. What I want to do now is send this file to a server within the application. So when the user hits submit...it sends the .3gp file. Is this possible? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您只使用 HTTP 并将其 POST 到您的服务器。
这是一个很好的小代码片段,展示了如何从 java 执行 HTTP post。
http://rapidandroid.org/wiki/HttpUpload
然后您必须在服务器上接收该文件。除非您有其他服务器端技术,否则您可以只使用一个简单的 php 脚本。
以下是使用 php 执行此操作的一些文档:
http://www.tizag.com/phpT/fileupload。 php
I'd recommend that you just use HTTP and POST it to your server.
Here's a good little code snippet that shows how to do an HTTP post from java.
http://rapidandroid.org/wiki/HttpUpload
Then you'll have to receive the file on your server. You could just use a simple php script for that unless you have some other server side technology.
Here's some documentation for doing this using php:
http://www.tizag.com/phpT/fileupload.php
是的,你应该使用 FTP,因为它会更快...
我已经对其进行了一些研发,发现了很少的链接,但大多数都不起作用。
这是用于 FTP 上传的链接。
http://www.jibble.org/simplleftp/
yes you should use FTP because it will be faster...
I had done bit R&D on it and found few link but most of them were not working.
here is the link that is working for FTP upload..
http://www.jibble.org/simpleftp/