和一般的网络程序差不多啊,也是用Socket来的,最主要的是为了可以通过防火墙,一般选择HTTP的端口,也就是80罢了,不知道说的够不够啊,呵呵

解决方案 »

  1.   

    Talk to a CGI/Servlet
    From the client point of view, there is no difference talking to CGI or Servlet. There is two ways to send a request to a CGI. The GET method contains encoded parameters in the URL. A typical URL talking to CGI using the GET method would be: new URL("http://www.server.com/cgi-bin/aCGI.pl?name=Real&site=JAVA+HowTo");
     
    Here we calling a script called aCGI.pl (a PERL script) passing the parameters name and site. Parameters are encoded, spaces are changed to "+" and special character to hexadecimal using a 3-letter escape sequence. Each parameter is delimited by the character "&". Habitually the encoding is done through the static method encode of the java.net.URLencoder class. String theCGI = "http://www.server.com/cgi-bin/aCGI.pl?";
    String encoded = "name=" + URLencoder.encode("Real Gagnon");
    URL CGIurl = new URL(theCGI + encoded);
     
    Once the URL is constructed, you call the CGI using the showDocument method. getAppletContext().showDocument(CGIurl);
     
    The CGI will process the result and produce a page to be displayed. 
    The POST method allows the programmer to manipulate the data received from the CGI. First a connection is made to the CGI, an OutputStream is open to send the parameters (if any). Then InputStream is created to receive the result. String theCGI = "http://www.server.com/cgi-bin/aCGI.pl";
    String encoded = "name=" + URLencoder.encode("Real Gagnon");
    URL CGIurl = new URL(theCGI);URLConnection c = CGIurl.openConnection();
    c.setDoOutput(true);
    c.setUseCaches(false);
    c.setRequestProperty("content-type","application/x-www-form-urlencoded");
    DataOutputStream out = new DataOutputStream(c.getOutputStream());
    out.writeBytes(encoded);
    out.flush(); out.close();BufferedReader in =
       new BufferedReader(new InputStreamReader(c.getInputStream());String aLine;
    while ((aLine = in.readLine()) != null) {
       // data from the CGI
       System.out.println(aLine);
       }
     You can't do some output then some input and do again some output. You must do all the output and then the input. There is no "dialog" between the client and the server. The client make a request and the server send back the result and close the connection. 
      

  2.   

      String username = getParameter("username");
      String clientip = getParameter("clientip");
      //System.out.println(username+": "+clientip);
      java.net.URL url=
    new java.net.URL(getDocumentBase(),"/servlet/PigServlet");
      System.out.println("getDocumentBase(): "+getDocumentBase());
      java.net.URLConnection con = url.openConnection();
      con.setUseCaches(false);
      con.setDoOutput(true);
      con.setDoInput(true);
      
      ByteArrayOutputStream byteout=new ByteArrayOutputStream();
      DataOutputStream out=new DataOutputStream(byteout);
      out.writeUTF(" "+username+"["+clientip+"]");
      out.flush();
      
      byte buf[]=byteout.toByteArray();
      con.setRequestProperty("Content-type","application/octet-stream");
      con.setRequestProperty("Content-length",""+buf.length);
      
      DataOutputStream dataout=new DataOutputStream(con.getOutputStream());
      dataout.write(buf);
      dataout.flush();
      dataout.close();   DataInputStream in=new DataInputStream(con.getInputStream());
      this.response=in.readUTF();
      //repaint();
      //System.out.println("read from server:"+response);   in.close();
      

  3.   

      DataInputStream in=new DataInputStream(req.getInputStream());
      resp.setContentType("application/octet-stream");
      ByteArrayOutputStream byteout=new ByteArrayOutputStream();
      DataOutputStream out=new DataOutputStream(byteout);
      //this.getDbData();
      //String response=in.readUTF()+" "+this.respData+" "+this.nowTime()+"\n";
      String response = in.readUTF() + " " + this.nowTime() + "\n";
      //System.out.println(response);
      out.writeUTF(response);
      out.flush();
      byte buf[]=byteout.toByteArray();
      resp.setContentLength(buf.length);
      ServletOutputStream servletout=resp.getOutputStream();
      servletout.write(buf);
      servletout.close();---------servlet----------