在http请求字符串url中添加文本

发布于 2024-08-12 08:26:45 字数 432 浏览 8 评论 0原文

好的,我制作了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福还没到 2024-08-19 08:26:45

NullPointerException 意味着某些内容为空 - 可能是您的文本字段。检查一下。如果文本字段不为空,它应该可以工作。

NullPointerException means something is null - probably your textfield. Check it. It should work, if textfield isn't null.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文