01: package org.griphyn.common.classes;
02:
03: import java.net.URL;
04:
05: /**
06: * <p>Title: </p>
07: * <p>Description: </p>
08: * <p>Copyright: </p>
09: * <p>Company: </p>
10: * @author Karan Vahi
11: * @version $Revision: 50 $
12: */
13:
14: public class VDSURL {
15: public VDSURL() {
16: }
17:
18: public static void main(String[] args) {
19: VDSURL VDSURL1 = new VDSURL();
20:
21: try {
22: URL u = new URL("gsiftp://sukhna.isi.edu");
23: } catch (Exception e) {
24: e.printStackTrace();
25: }
26:
27: }
28:
29: }
|