
May 3rd, 2002, 10:38 AM
|
|
Junior Member
|
|
Join Date: Apr 2002
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Java jar
I am having great trouble trying to make this program run by a double click from windows
when I do double click on it nothing happens but when i go to the processes for windows I can see that javaw is running and is like 8000K big but nothing pops up on the screen
I have tried a test program just a simple hello world created by JDeveloper.. and it works
but this program does not
any ideas?
My Manifest looks like the follows.. which was created by JDeveloper
Manifest-Version: 1.0
Main-Class: RemoveAddress
Created-By: Oracle JDeveloper 3.2
Name: TxtFilter.class
Java-Bean: True
Name: ConsoleWindow.class
Java-Bean: True
Name: RemoveAddress.class
Java-Bean: True
Name: ConsoleWindow$1.class
Name: RemoveAddress$2.class
Name: RemoveAddress$4.class
Name: connections.properties
Name: RemoveAddress$1.class
Name: RemoveAddress$3.class
Name: Storage.class
Java-Bean: True
Name: RemoveUtility.class
This is a GUI Application and the classes I am using are:
RemoveUtility
RemoveAddress (Main Class)
TxtFilter
ConsoleWindow
Storage
These classes have these imports in them:
import javax.swing.filechooser.FileFilter;
import java.io.*;
import java.util.*;
import javax.swing.*;
import oracle.jdeveloper.layout.*;
import java.awt.event.*;
import java.awt.*;
|