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 9152029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:56:40+00:00 2026-06-17T11:56:40+00:00

I need to start a Java program using an Eclipse Runtime Configuration ( ILaunchConfiguration

  • 0

I need to start a Java program using an Eclipse Runtime Configuration (ILaunchConfiguration). However, I want to provide the program to run as a .jar file (as part of the plugin), not as an Eclipse project.

It seems in order to start a Java program from an Eclipse Runtime Configuration I need to specify a project (and main class).

How can I use the Configuration framework to start an arbitrary .jar file?

  • 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-17T11:56:41+00:00Added an answer on June 17, 2026 at 11:56 am

    This article helps:

    http://eclipse.org/articles/Article-Java-launch/launching-java.html

    I use the following code to run a .jar file which is inside my plugin’s lib directory:

    IPath path = new Path("lib" + File.separator + "some.jar");
    Bundle bundle = Platform.getBundle(IDs.PLUGIN_ID);
    URL url = FileLocator.find(bundle, path, null);
    URI uri = FileLocator.resolve(url).toURI();
    File file = URIUtil.toFile(uri);
    IPath resolvedPath = new Path(file.toString());
    IRuntimeClasspathEntry jar = JavaRuntime.newArchiveRuntimeClasspathEntry(resolvedPath);
    
    IPath systemLibsPath = new Path(JavaRuntime.JRE_CONTAINER);
    IRuntimeClasspathEntry systemLibsEntry =
    JavaRuntime.newRuntimeContainerClasspathEntry(systemLibsPath, IRuntimeClasspathEntry.STANDARD_CLASSES);
    
    List<String> classpath = new LinkedList<>();
    classpath.add(aproveJar.getMemento());
    classpath.add(systemLibsEntry.getMemento());
    
    configuration.setAttribute(IJavaLaunchConfigurationConstants.ATTR_CLASSPATH, classpath);
    configuration.setAttribute(IJavaLaunchConfigurationConstants.ATTR_DEFAULT_CLASSPATH, false);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to read a text file when I start my program. I'm using
i want to convert an avi file to 3gp using java program. For this
I am running a shell command from Java code using ProcessBuilder.start() I need a
I need to start a Visual Basic script file by using WMI in a
I'm trying to dynamically run a .jar from a C# assembly (using Process.Start(info) ).
I want to run a shell script from within a Java program asynchronously-- i.e.
I'm using RFT 8.2 with it's Eclipse Version but my own java program doesn't
I need to start a copy of a Rails app from within Java. I
I'm going to develop a java web start application, which need to access protected
I need to start up a jetty with an external (possibly remote) .war file

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.