使用 ASIHTTPRequest 上传音频文件
谁能给我一个关于如何使用 ASIHTTPRequest 将音频文件上传到服务器的教程? 我需要构建一个 JSON 并将音频数据放入 JSON,然后将其发送到服务器。如果这太模糊,请随时询问更多信息。
假设我使用 AVAudioRecorder 类。我将使用什么将该音频文件发送到录制并准备上传后创建的服务器?
Can anyone please give me a tutorial on how to upload Audio Files onto a server using ASIHTTPRequest?
I'll need to build a JSON and get the audio data into the JSON then send it to the server. If this is too vague please don't hesitate to ask for more info.
let's say i use AVAudioRecorder class. What would i use to send that audio file to the server that is created after I record it and am ready to upload it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将使用 ASIFormDataRequest 类。请参阅此网址的“使用 ASIFormDataRequest 发送表单 POST”部分:http://allseeing- i.com/ASIHTTPRequest/How-to-use
您可能需要将文件临时存储在手机上,获取该文件的路径,然后将其作为此类中的文件发送。它适用于我知道的图像,因此它也应该适用于其他文件。您的 PHP 脚本或任何接收文件的脚本只需要知道如何处理文件类型。
You would use the ASIFormDataRequest class. See the "Sending a form POST with ASIFormDataRequest" section of this url: http://allseeing-i.com/ASIHTTPRequest/How-to-use
You may need to temporarily store the file on the phone, get the path to that file, and then sent it as a file in this class. It works with images I know, so it should work with other files as well. Your PHP script or whatever that is receiving the file will just need to know how to handle the file type.