1. Java Remote File Options stackoverflow.comI've recently started an internship and I'm having some issues with Java in the enterprise environment. I've been assigned the task of porting the functionality of an old windows shell script ... |
2. Get a single file from a remote mercurial repository stackoverflow.comIs there a way to programmatically download a single file from a remote Mercurial repository, in Java? I have asked a very similar question regarding git; now I'm hoping I ... |
3. Remote host file operations over SSH2 in java stackoverflow.comI've got a simple task for now: connect to a remote server and get list of files and their info (in particular date of creation). Tried JSch, but it's like writing unix ... |
4. java - performing file operations on remote locations stackoverflow.comhi i want to perform operations on files like rename, copy and etc. these are not local files. they are located on remote computers. I have 2 options: 1. run some kind of a telnet ... |
5. Client requries .clss file of Remote Interface. Why? coderanch.comI have RMI application, in which my remote interface has some methods which are taking one serialised objects as argument while some are returning serialised objects. Now after giving the codebase corectly my client can download the stub properly provided the .class files of remote interfaces and all the serialised object's .class are copied to the client appropriate directory. If I ... |
6. display remote file system structure coderanch.comI don't know much about doing something like this, but are you calling telnet from inside your java app? If so, it sounds like you would have to get telnet to return a textual representation of the directory structure and you would have to interpret it. Do you have to use telnet? How about using something a bit more friendly to ... |
7. Connection to remote machine coderanch.com |
8. Creating File in Remote machine coderanch.com |
9. how to "get" a remote file coderanch.comHi I need to "get" a page from a remote server and incorporate it into the current JSP page. although this is a jsp question its to do with IO so I hope I am in the right area. I am not overley familiar with Java so please be kind any pointers or advice would help the scenario is this I ... |
10. Creating file on remote machine coderanch.comHi, How I can create file on remote machine ( may be with File object), it is possible to get ip address of machine. In earlier scraps I read it is possible with shared volume, but can anybody give me example or link for that. Thanks a lot. Waiting for your reply. Regards, Mandar Velankar |
11. Uploadin file in remote system coderanch.comHi, There is a requirement of file upload in our project.The task is finished but the change request came to me is to upload the file in different system. Let me explain in detail...currently why the user hits the browse button and uploads the file, the file is getting uploaded in server in particular location, but as per the Change Request ... |
12. Remote File integrity coderanch.comHi all, I have been checking the file integrity(calculating SHA1 cheksum) of tar files in linux server in my java code by using linux sha1sum. Now i have to implement the same for tar files stored in remote SFTP servers (eg freeFTPd or linux native) without copying them to this server or streaming them to stdin. I can do it after ... |
13. copyinga remote file coderanch.comNo, it is not enough, you need a cooperating process on the remote machine. Also, any system connected to the internet is likely to have a firewall or other security precautions. Just imagine what would happen if anybody could reach into your file system with just your IP address. FTP is a well known approach for file transfers, but your choices ... |
14. Remote File Operations coderanch.comHi, I've serched a lot for this operation, couldnt get hold of anything great. My requirement is that, I would like to connect to a remote machine by passing its Hostname, UserID, Password to the program. Once it is connected, it should be able to perform file operations like read, write, copy, etc. When serached for the articles in Google, all ... |
15. JAVA Stored Procedure acessing a remote file dbforums.com |
16. File Operations to A Remote system forums.oracle.comthanks for ur reply...... I did the same thing . but when i use the outputstream command it gets stored only in the server and not in the local machine. this is the code i used: byte[] iresult = port.inputgraph(key); DataOutputStream dos =new DataOutputStream(new BufferedOutputStream(new FileOutputStream("/root/Desktop/input.png"))); dos.write(iresult); Edited by: ram.west on Oct 20, 2008 9:01 AM |
17. io.File and remote files forums.oracle.comHi. I use the next code so I can get the files inside a Windows-shared folder. I allow write/read when I share the folder in my network. This is the code: File root=new File("//HostName/sharedFolder"); FileFilter fileFilter = new FileFilter() { public boolean accept(File file) { return file.isDirectory();} }; File[] files = root.listFiles(fileFilter); then I get names from the files array... everyting ... |
18. remote file dimension forums.oracle.com |