Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8529123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T08:57:34+00:00 2026-06-11T08:57:34+00:00

I am fairly new to java and now I want to use java to

  • 0

I am fairly new to java and now I want to use java to run SSH over windows command.

Here is the code i created,

Process pr1 = Runtime.getRuntime().exec("cmd /k" + "ssh root@host" + "&&" + "passwd" );
Process pr = Runtime.getRuntime().exec("ls");
BufferedReader input = new BufferedReader(new InputStreamReader(pr.getInputStream()));
String line=null;

while((line=input.readLine()) != null)
    System.out.println(line);

I was always given the error :

java.io.IOException: Cannot run program “ls”: CreateProcess error=2,
The system cannot find the file specified

Can anybody help me on this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T08:57:35+00:00Added an answer on June 11, 2026 at 8:57 am

    Apart from using JSch (or any other Java SSH implementation), passing the Path via environment variables is likely not to work, since most SSH deamons only accept a small set of variables from the other side (mostly related to localization or terminal type).

    As the argument to ssh (or the “command”, if using JSch with an ChannelExec) is passed to the remote shell for execution, you could try to define the path in this command (if your default shell is something compatible to the POSIX sh):

    PATH=path_needed_toRun_myProg /absPathToMyProg/myProg

    Your array for Runtime.exec thus would look like this:

    String[] cmd = {"/usr/bin/ssh", "someRemoteMachine",
                    "PATH=path_needed_toRun_myProg /absPathToMyProg/myProg"};
    

    If its not hard and strict rule to use Runtime.exec, then try Apache’s Exec library…

    See this link:

    http://commons.apache.org/exec/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

fairly new to java here. I'm writing a GUI program of which I want
I am fairly new to Java programming and was following a tutorial located here:
Okay, I'm very new to linux and command line, and fairly new to java.
I'm fairly new to Java and Android programming in general but I would like
I'm still fairly new to Java, but I'm fairly sure this shouldn't happen. There's
I am fairly new to Java, and recently I was reading some material about
I'm fairly new to Java and am writing an app that needs an XML
I am fairly new to Java so am looking for a good way of
I am fairly new to Java, and I am trying to construct a very
I'm fairly new to programming and new to java, but I'd like to jump

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.