• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Newbie, Need Java clarification

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello. I am a Sys Admin and have been using VBScript and Perl for some time and now looking into Java. Can you initiate a system call to the OS from within java. For example, sometimes in perl I use the system command which allows me to use some Windows native commands which are better in certain instances, like net use etc. I want to be able to run a java program from my machine and access files on remote machines to parse, getdata, etc. Those remote machines are 98% Windows and have the JRE 1.3 installed. Any suggestions would be great.
Thanks in advance,
Dave
 
Ranch Hand
Posts: 73
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Use Runtime to do that. However it makes your code platform dependent.


To make it a little more platform independent, best way is to look for the executable at the path(s) you expect - if not found ask the user to locate the executable.
Hope this helps.
 
Aaaaaand ... we're on the march. Stylin. Get with it tiny ad.
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic