在http请求字符串url中添加文本
好的,我制作了一个 midlet,通过它我可以连接到服务器页面并获取 soem 信息作为响应。 例如,我制作了一个 midlet,通过它我访问了 url: http://example.com/? u=尼泊尔&t=1 现在我想根据用户输入更改 u 的值。 我创建了一个文本字段,用户可以通过它在 u=***** 中输入所需的名称 现在我如何将用户输入的字符串添加到 url 并获取它? 我尝试直接添加文本字段来链接,但没有成功。 我试图通过 s=textfield.getString();并制作了网址:example.com/?u="+s+"&t=1 但在我这样做之后,jar 文件不运行并显示 null 异常错误。 请帮助我如何根据用户通过应用程序输入的值更改 u 的值。 谢谢
ok i made a midlet through which i can connect to server pages and get soem information as response.
For example i made a midlet through which i acced url: http://example.com/?u=nepal&t=1
Now i want to change the value of u as per users input.
I made a text field through which users can input desired name in u=*****
Now how can i add user inputted string to the url and featch it?
i tried to add the textfield directly to link it didnot worked.
i tried to pass s=textfield.getString(); and made url: example.com/?u="+s+"&t=1
But after i did it jar file donot run and says null exception error.
Please help how can i.. change the value of u as per users input through the app.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NullPointerException 意味着某些内容为空 - 可能是您的文本字段。检查一下。如果文本字段不为空,它应该可以工作。
NullPointerException means something is null - probably your textfield. Check it. It should work, if textfield isn't null.