This post originated from an RSS feed registered with Java Buzz
by Franco Martinig.
Original Post: java.nio.file for Remote Systems
Feed Title: Java Software Development Videos and Tutorials Directory
Feed URL: http://www.java-tv.com/feed/
Feed Description: Java-TV.com is a directory of videos, interviews and tutorials focused on software development activities with the Java programming language.
The New I/O File API (java.nio.file ), introduced in Java SE 7, has overcome several shortcomings in the File API. Most importantly, it is now designed for extension. For example, you can write a FileSystemProvider to perform remote file management.
The open source Overthere library implements a FileSystemProvider for SSH, CIFS, Telnet, and WinRM. Furthermore, it adds an abstraction on execution of processes. This session demonstrates how Overthere can be used to implement several common remote systems management scenarios such as modifying a file or deploying an application. It also shows ...