html:
<Form action="get.jsp" method="post">
<input type="text" name="text1" value="temp">
</Form>get.jsp:
<%
String = temp;
temp = (String)request.getParameter("text1"); //取得post的参数
%>

解决方案 »

  1.   

    不好意思,我没说清楚。
    我是说如何在java程序中通过一个网站的80端口向这个网站的一个ASP页面POST请求,然后GET这个网站里指定的页面。这应该是socket通讯的问题。不是指页面。
      

  2.   

    u=new URL(UrlText);
            uc=u.openConnection();
            uc.setRequestProperty("contentType","text/html; charset=gb2312");
            uc.setDoInput (true);        theData=uc.getInputStream();
      

  3.   

    忘了
         URL u=null;
         URLConnection uc=null;
      

  4.   

    使用URL大多数情况下由于对方网络服务器的设置而无法起作用
      

  5.   

    HttpClient? 在哪个包里面,我怎么没找到