靠,这当然没法搞了,
这是人家自带的控件,
JSP里面没有呀,
你想实现菜单???
自己写JS脚本吧

解决方案 »

  1.   

    这是http请求和菜单有什么关系???
      

  2.   

    逐字翻译了一下,基本是这样,如果有小问题请自行调试。String strA="sssssssss"
    HttpURLConnection huc = (HttpURLConnection) new URL(surl).openConnection();
    huc.setDoOutput(true);
    huc.setRequestProperty("Content-Length", "" + strA.length());
    huc.setRequestProperty("Content-type", "application/x-www-form-urlencoded");
    OutputStream os = huc.getOutputStream();
    os.write(strA.getBytes());
    os.flush();
    InputStream is = huc.getInputStream();
    byte[] b = new byte[is.available()];
    is.read(b, 0, b.length);
    out.println(new String(b));
      

  3.   

    这个是COM组件,是DLL,翻译有困难