在J2ME中,如何使用HttpConnection设置Header信息?
我在 J2ME 中使用 HttpConnection 进行服务器之间的通信。我想使用 http 标头将一些数据发送到服务器。谁能告诉我如何使用 HttpConnection 设置标头信息。任何例子。 谢谢
I have used HttpConnection in J2ME for communication between server. I want to send some data to server with http header. Can anybody tel me how to set header information with HttpConnection. Any example.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 http://www.j2mesalsa.com/elearning/networking.html :
示例:
setRequestProperty( "User-Agent", "Profile/MIDP-1.0 Configuration/CLDC-1.0" )
希望有帮助。
From http://www.j2mesalsa.com/elearning/networking.html :
Example:
setRequestProperty( "User-Agent", "Profile/MIDP-1.0 Configuration/CLDC-1.0" )
Hope it helps.