Jun 17, 2004 #1 DeSn Programmer Nov 20, 2001 111 BE Hi, How can I create an URL in java with represents a networkpath? URL u = new URL("\\max1\test"); The above doesn't work
Hi, How can I create an URL in java with represents a networkpath? URL u = new URL("\\max1\test"); The above doesn't work
Jun 17, 2004 #2 sedj Programmer Aug 6, 2002 5,610 URL u = new URL("file://\\max1\test"); or : URL u = new URL("file://C:/max1/test"); -------------------------------------------------- Free Database Connection Pooling Software http://www.primrose.org.uk Upvote 0 Downvote
URL u = new URL("file://\\max1\test"); or : URL u = new URL("file://C:/max1/test"); -------------------------------------------------- Free Database Connection Pooling Software http://www.primrose.org.uk
Jun 17, 2004 #3 sedj Programmer Aug 6, 2002 5,610 or probably better - URL u = new URL("file:///max1/test"); -------------------------------------------------- Free Database Connection Pooling Software http://www.primrose.org.uk Upvote 0 Downvote
or probably better - URL u = new URL("file:///max1/test"); -------------------------------------------------- Free Database Connection Pooling Software http://www.primrose.org.uk