代码片断如下:
String upURL = "http://202.34.245.21:8080/ert/echo";
upURL += "?filePath=temp.wave&" + "length="+ writelength;
HttpURLConnection con = (HttpURLConnection) new URL(upURL).openConnection();
System.out.println("url connn..."+ con.toString());在applet中使用url来连接名为echo的servlet
这里打印出
url connn...sun.net.www.protocol.http.HttpURLConnection:http://202.38.245.20:8080/etonecrbt/echo?filePath=temp.wave&length=103154但是具体的servlet中却没有做动作 
如何判断我这个url是连接到了servlet呢? 直接在ie地址栏中敲入http://202.34.245.21:8080/ert/echo是可以连接的在线求救 谢谢