JSP 中的 fsockopen 等效项
我该如何将此代码转换为 JSP
任何帮助表示赞赏..!
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET / HTTP/1.1\r\n";
$out .= "Host: www.example.com\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
How do i go about converting this code to JSP
Any help appreciated..!
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET / HTTP/1.1\r\n";
$out .= "Host: www.example.com\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为此,您可以使用 JSTL 标记库。首先在 jsp 顶部使用声明命名空间
,然后使用 c:import 标签包含指定 url 中的内容:
You can use the JSTL taglib for this. First declare the namespace at the top of the jsp using
And then use the c:import tag to include content from the specified url:
检查一下它是否有效......
Check this out it works.......
您可以使用 Apache HTTP 组件 库来完成此操作。类似下面的内容应该适用于 HTTP 组件库:
You can do this with the Apache HTTP Components library. Something like the following should work with the HTTP Components library: