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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:28:27+00:00 2026-06-04T08:28:27+00:00

I have a (Swing + AWT) application which uses an external jar library (by

  • 0

I have a (Swing + AWT) application which uses an external jar library (by calling a main method inside it). This external application opens a window each time an event occurs (e.g. a button is pressed). Please consider that I have no access to the external jar source code.

How can I close the previously opened window before calling the main again?

The actionPerformed looks like this:

private void anActionPerformed(java.awt.event.ActionEvent evt) {
           String [] argv = {"arg1","arg2","arg3"};
           com.somepackage.SomeClass.main(argv);
        }
  • 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-04T08:28:30+00:00Added an answer on June 4, 2026 at 8:28 am

    You can just guess – which might be wrong – that SomeClass.main calls a Ctor new SomeClass.

    You could try to call it yourself:

    SomeClass someclass = new SomeClass ();
    

    It it is a JFrame, it is often initialized in main, and some properties are often set:

    someclass.setSize (...
    someclass.setLocation (...
    someclass.setVisible (true);
    

    If that works, you can store the someclass reference in a way, that you later can call

    someclass.dispose ();
    someclass = new SomeClass ();
    

    Else you might search every class in the jar:

    jar -tf some.jar
    

    and use reflection and introspection to search for a ctor to call.

    Or you try to extend SomeClass – maybe it isn’t final and can be inherited.

    class MyClass extends SomeClass 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have developed a Java Swing application, which uses the SwingWorker class to perform
I have an application which uses Hibernate for database transactions, I have mapped all
I have an application which uses JTables to display data, and the cells are
I have Swing application which manipulate shapes. In my toolbar I have a zoom
I'm developing a console Java application(Not swing) using java.awt.Desktop class, which will launch the
I have to use both AWT and Swing component in my application. At displaying
i have a swing application that i would like to run on os x
I have a Swing runnable app which updates messages, then I have a Java
I have a Swing application that I would like to convert from spaghetti to
i am new to netbeans ide , i have a swing desktop application and

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.