|
Advertisement
|
Forum posts by rohit:1 page [ 1 ]
Posted in Java Answers Forum, Sep 28, 2005, 2:39 PM
Thanks for the reply.I found a solution for the problem actually JFileChooser works on the Local Directory. And for that purpose File Class has a the relevent APIs for the same.The way I did it is String urlStr = "http://localhost:9090/logs/"; URL url = new URL(urlStr); java.net.URLConnection con = url.openConnection(); con.connect();...
Posted in Java Answers Forum, Sep 28, 2005, 5:31 AM
Hi I am using URL to get a list of a particulat directory via http port some thing like ..String urlStr = "http://localhost:9090/logs/MEMORY.txt"URL url = new URL(urlStr);is it possible to get the Entire directory listing by specifying the Directory URL sayString urlStr = "http://localhost:9090/logs/URL url = new URL(urlStr);Or there any other...
1 page [ 1 ]
|