如何将SD卡上的3gp文件上传到服务器?

发布于 2024-11-14 11:27:34 字数 132 浏览 3 评论 0原文

经过无数次的头痛和浪费时间后,我设法让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

微凉徒眸意 2024-11-21 11:27:34

我建议您只使用 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

音栖息无 2024-11-21 11:27:34

是的,你应该使用 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文