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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T23:48:24+00:00 2026-05-29T23:48:24+00:00

I’m using eclipse on a windows 7 x64 to create a new Java Application.

  • 0

I’m using eclipse on a windows 7 x64 to create a new Java Application.

This is my code:

import java.awt.EventQueue;


public class Testen {

    private JFrame frame;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    Testen window = new Testen();
                    window.frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the application.
     */
    public Testen() {
        initialize();
    }

    /**
     * Initialize the contents of the frame.
     */
    private void initialize() {
        System.out.println("1");
        frame = new JFrame();
        System.out.println("2");
        frame.setBounds(100, 100, 450, 300);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

}

My program is crashing on the line:

 frame = new JFrame();

It is not giving any error, it’s just waiting a second or two, and then my application stops running.

In the event viewer I get this errors:

Faulting application name: javaw.exe, version: 7.0.10.8, time stamp: 0x4e8975e3
Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
Exception code: 0xc0000005
Fault offset: 0x0000000000000000
Faulting process id: 0x1334
Faulting application start time: 0x01ccb4bf9aaa4d8d
Faulting application path: C:\Program Files\Java\jre7\bin\javaw.exe
Faulting module path: unknown
Report Id: d9936f72-20b2-11e1-916b-904ce5de36f8

Faulting application name: javaw.exe, version: 7.0.10.8, time stamp: 0x4e8975e3
Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
Exception code: 0xc000041d
Fault offset: 0x0000000000000000
Faulting process id: 0x1334
Faulting application start time: 0x01ccb4bf9aaa4d8d
Faulting application path: C:\Program Files\Java\jre7\bin\javaw.exe
Faulting module path: unknown
Report Id: dd4f2583-20b2-11e1-916b-904ce5de36f8

Fault bucket 2569546253, type 5
Event Name: BEX64
Response: Not available
Cab Id: 0

Problem signature:
P1: javaw.exe
P2: 7.0.10.8
P3: 4e8975e3
P4: StackHash_1dc2
P5: 0.0.0.0
P6: 00000000
P7: 0000000000000000
P8: c0000005
P9: 0000000000000008
P10: 

Attached files:
C:\Users\jdc\AppData\Local\Temp\WERD617.tmp.WERInternalMetadata.xml

These files may be available here:
C:\Users\jdc\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_javaw.exe_c49c9b915a42e5982f3a993e0cb1afabe4de2bb_168ced10

Analysis symbol: 
Rechecking for solution: 0
Report Id: d9936f72-20b2-11e1-916b-904ce5de36f8

Fault bucket 50876441, type 4
Event Name: APPCRASH
Response: Not available
Cab Id: 0

Problem signature:
P1: javaw.exe
P2: 7.0.10.8
P3: 4e8975e3
P4: StackHash_b541
P5: 0.0.0.0
P6: 00000000
P7: c000041d
P8: 0000000000000000
P9: 
P10: 

Attached files:
C:\Users\jdc\AppData\Local\Temp\WEREE86.tmp.WERInternalMetadata.xml

These files may be available here:
C:\Users\jdc\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_javaw.exe_936cbeffcc52c8ea801f518b59b6ee71645a626_1c350580

Analysis symbol: 
Rechecking for solution: 0
Report Id: dd4f2583-20b2-11e1-916b-904ce5de36f8
Report Status: 0

Does anybody has any idea on how to solve this? Or where should I start looking for a solution?

EDIT:

This works perfectly fine under linux. (Biggest difference is the java version)

  • 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-29T23:48:25+00:00Added an answer on May 29, 2026 at 11:48 pm

    Other java programs also had troubles on my machine..

    A complete uninstall and reïnstall of all the java components fixed it. I guess I’ll never know the real reason.. 🙁

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

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have thousands of HTML files to process using Groovy/Java and I need to
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
Basically, what I'm trying to create is a page of div tags, each has
this is what i have right now Drawing an RSS feed into the php,

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.