如何在BADA中将远程文件读入字符串
我是一名迁移到 BADA 的 iOS 开发人员。在 iOS 中,我们有一个简单的方法来从服务器加载文本文件的内容,并将其用作我们应用程序中的字符串。我如何在 BADA 中做同样的事情?
像这样的东西
NSData *dtXmlData = [NSData dataWithContentsOfURL:url];
I am an iOS developer migrating to BADA. In iOS we had a simple method to load the contents of a text file from a server and use it as a string in our app. How do I do the same in BADA?
Something like this
NSData *dtXmlData = [NSData dataWithContentsOfURL:url];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能应该发送一个 http GET 请求并读取
OnTransactionReadyToRead();
中收到的缓冲区You should probably send an http GET request and read the buffer received in
OnTransactionReadyToRead();