检索添加了用户输入的网站
我读到要在java中检索网页,使用起来很快:
URL url = new URL("http://example.com");
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
InputStream stream = connection.getInputStream();
// read the contents using an InputStreamReader
但是如何将用户给定的变量添加到url中?例如:
用户输入 x 加载页面 http://example.com/x.php
我是 java 新手,所以有任何帮助将不胜感激。
I read that to retrieve a webpage in java, it is quick to use:
URL url = new URL("http://example.com");
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
InputStream stream = connection.getInputStream();
// read the contents using an InputStreamReader
But how would I add a variable given by the user into the url? For example:
User inputs x
Loads page http://example.com/x.php
I'm new to java, so any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以像这样使用字符串连接:
然后您可以使用该字符串实例化 URL。
You can use string concatenation like this :
Then you can instantiate the URL with that string.
或者
Or