I want to read a file from a server which is in the different location.
I have an IP, username and password of the server.
How can i read a file in java?
|
I want to read a file from a server which is in the different location. I have an IP, username and password of the server. How can i read a file in java? |
|||||||
|
|
|||
|
|
|
Rather than use Java, you should just use scp. If there is a need to do this from Java, you can always form your scp command as a string and pass it to Runtime.getRuntime.exec(). (Be careful with passwords in your source code, though.) |
|||
|
|