can someone help me to find a tutorial or sample java code for
reading file from a any machine which is same network
|
|
|||||
|
|
|
The simplest way to do this would be to read it using regular file paths. On Windows:
On Unix: First mount the share using Samba (SMB, NFS or whatever other protocol) to some location like /mnt/network. Then you can use:
Once you have the File object you can use FileInputStream, FileReader or whatever else you want to read the file in. Edit for comments response. If you are using an Applet, you probably want to pull the file from a web server. You can use the built in java.net.URL class but I would recommend this if you have to do more than just simple stuff: http://hc.apache.org/httpclient-3.x/index.html Example (from the Commons HTTP Site):
|
|||
|
|
Try the following url for a tutorial http://www.roseindia.net/java/beginners/construct_file_name_path.shtml I think the best way is to use java.net.URL to open a InputSteam because you can generalize it to files that are not necessarily on the same network. |
||
|
|