0

How to programmatically and over the Internet upload file to a Windows Server 2003 remote desktop from within a local Java application given security credentials (username, password) and Windows Remote Desktop settings (rdp)?

Kai
  • 38,985
  • 14
  • 88
  • 103
Morten
  • 33
  • 8

1 Answers1

1

there are many ways to connect to a remote windows Server for sharing files:

File remote = new File("file:///server/share/path/to/file.txt");

Or use JCifs ro connect to a windows-share.

Christian Kuetbach
  • 15,850
  • 5
  • 43
  • 79