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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:38:14+00:00 2026-05-27T00:38:14+00:00

Basically, I am trying to create an app, that displays images. filename variable is

  • 0

Basically, I am trying to create an app, that displays images.

filename variable is a path to an image that I want to display. After I start an app, an Image is displayed, but then, when I remove the image from a hard drive (or change other image to the filename name) I don’t get any other Image, just the same as before.

public static void main(final String[] args) {

    String filename = "C:\\temp\\1.jpeg";
    JFrame frame = new JFrame();
    frame.getContentPane().add(new JLabel(new ImageIcon(filename)));
    frame.pack();
    frame.setVisible(true);

    // Mouse Listener is only to display another JFrame after mouseClicked event
    frame.addMouseListener(new MouseListener() {

        public void mouseClicked(MouseEvent e) {
            main(args);
        }

        public void mousePressed(MouseEvent e) {
        }

        public void mouseReleased(MouseEvent e) {
        }

        public void mouseEntered(MouseEvent e) {
        }

        public void mouseExited(MouseEvent e) {
        }
    });
}
  • 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-05-27T00:38:15+00:00Added an answer on May 27, 2026 at 12:38 am

    The image is cached. You need to force it to reload by doing either:

    //  This works using ImageIO
    
    imageLabel.setIcon( new ImageIcon(ImageIO.read( new File(imageName) ) ) );
    
    //  Or you can flush the image
    
    ImageIcon icon = new ImageIcon(imageName);
    icon.getImage().flush();
    imageLabel.setIcon( icon );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a custom control for a silverlight app that will basically
I am trying to create a simple ipad app with a UIWebview that displays
I am trying to create a simple test app that basically extends the Android
I am trying to create something in Perl that is basically like the Unix
I'm trying to create a function that searches up a WebControl's parent-child relationship (basically
I am trying to create my first Android app and need some help. Basically
I am trying to create a simple alert app for some friends. Basically i
So I'm trying to write a stopwatch app that displays time in milliseconds, but
I'm trying to create a web filter app that will intercept an incoming website(one
I'm tryin to create a simple app that basically is a tracker that keeps

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.