如何在Bada中获取网页的HTML?
我不知道我还应该提供哪些其他详细信息。但我很迷失方向。我不是网络开发人员,所以我不知道该使用哪些类。我无法区分 HttpResponse、HttpHeader、HttpSession、HttpTransaction 等之间的区别。
I don't know what other details I should provide. But I am very disoriented. I am not a web developer so I don't know what classes to use. It's not like I can tell the difference between HttpResponse, HttpHeader, HttpSession, HttpTransaction etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 发出 HTTP 请求 和 接收 HTTP 响应。
第二个文档中的代码通常位于 IHttpTransactionEventListener::OnTransactionCompleted 方法中。
您正在寻找的 HTML 应该是 HttpResponse::ReadBodyN 的返回值。
Have a look at Making HTTP Requests and Receiving HTTP Responses.
The code in the second doc would normally go in a IHttpTransactionEventListener::OnTransactionCompleted method.
The HTML you are seeking should then be the return value of HttpResponse::ReadBodyN.