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

  • SEARCH
  • Home
  • 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 7754969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:26:52+00:00 2026-06-01T12:26:52+00:00

This is fairly simple in Windows, but a little tricky in Linux. I am

  • 0

This is fairly simple in Windows, but a little tricky in Linux. I am using

Runtime.getRuntime().exec(new String[] { "/bin/bash", "-c", "java -classpath /home/4/byz/Orc" });

where Orc is the class file with a main function.
But nothing happens. Are there any settings ? Am I doing something wrong ?

I wish the java program to run in the terminal.

EDIT

Here is the solution:

        String[] cmdArray = {"gnome-terminal","java -classpath /home/r/byz/ Orchestrator"};

        try {
            Runtime.getRuntime().exec(cmdArray);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

So basically, we have to use gnome-terminal ..

  • 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-01T12:26:53+00:00Added an answer on June 1, 2026 at 12:26 pm

    I believe this is already resolved, however I’ll post an answer:

    How to Run:

    executeCommand(new String[]{"/bin/bash", "-c", "java -classpath /home/4/byz/Orc"});
    

    Method:

    public String executeCommand(String[] cmd) {
        StringBuffer theRun = null;
        try {
            Process process = Runtime.getRuntime().exec(cmd);
    
            BufferedReader reader = new BufferedReader(
                    new InputStreamReader(process.getInputStream()));
            int read;
            char[] buffer = new char[4096];
            StringBuffer output = new StringBuffer();
            while ((read = reader.read(buffer)) > 0) {
                theRun = output.append(buffer, 0, read);
            }
            reader.close();
            process.waitFor();
    
        } catch (IOException e) {
            throw new RuntimeException(e);
        } catch (InterruptedException e) {
            throw new RuntimeException(e);
        }
            return theRun.toString().trim();
    }
    

    Let me know if this helps!

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

Sidebar

Related Questions

This is fairly simple but I cant work it out. I'm building a wordpress
I guess this is fairly simple for you but i cant wrap my head
This seems like it would be fairly simple, but I've been unable to find
I'd expect this to be fairly routine, but cannot find a simple approach for
I’m having a little trouble figuring this one out. I’m fairly new to C#,
I'm sure this is fairly simple, however I have a major mental block on
I'd like to count and group rows by specific values. This seems fairly simple,
fairly simple question and I haven't seen anything asked with this exact scenario laid
Fairly simple; I'm just curious if there's a better way to accomplish this. Given
This question is fairly fundamental.I gave a simple and straighfoward test on my cygwin:

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.