将php代码翻译为jsp

时间:2011-09-28 06:56:48

标签: php jsp

$postdata = http_build_query(array('name' => $album_name,'message' => $album_description));
$opts = array('http' =>array( 'method'=> 'POST',
                              'header'=>'Content-type: application/x-www-form-urlencoded',
                              'content' => $postdata));
$context  = stream_context_create($opts);

有没有人能告诉我jsp上的类似功能

http_build_query()是php函数,Jsp中的类似函数是什么?

stream_context_create()也是php函数

1 个答案:

答案 0 :(得分:1)

使用scriptlets,您可以在jsps中调用java库。

对于 http_build_query ,Java中的模拟是URLEncoder类。这是关于如何使用它的a simple tutorial

对于 stream_context_create ,我想你想向服务器发送一个http请求,Java中的模拟是Java.net。请参阅this post for mini a torial