Deployment of JRE with application please help

Hello All. I am new to java. have managed to build a simple telephone directory running through a gui all is now working well. I would like to deploy my application to another machine how do i go about this?. I understand that any other pc without the J2SE software will require the runtime enviroment but little else. could someone point me in the direction of a usefull tutorial. I have looked around suns site but cannot seem to find a beginners guide for this topic.(I intend to run application on windows 98-xp)
Many thanks
Scott

You have got three options:
1) Distribute the JRE with your program and ask your users to install it. It is pretty easy to install. Download it from here: http://java.sun.com/j2se/1.4.1/download.html
2) Direct the user to the following page for even easier install and download: http://java.sun.com/getjava
3) Build an installer that takes care of everything for you. InstallAnywhere is a free one: http://www.zerog.com.

Similar Messages

  • My iPad 4 tried to open application but repeatedly iCloud asked for login with apple id password. I put my apple id password correct,even i reset it again but still it does not accept in iPad .i am bored with this 3rd class application.please help

    My iPad 4 tried to open application but repeatedly iCloud asked for login with apple id password. I put my apple id password correctly,even i reset it again but still it does not accepted in iPad .i am bored with this  class application.please help.After every 1 second icloud logoin asked.

    Find Apple ID
    https://iforgot.apple.com/applied
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
    If you can’t update or restore your iOS device
    http://support.apple.com/kb/ht1808
     Cheers, Tom

  • Trying to veiw videos from a website that requires me to download firefox and silverlight.My imac osx 10.5.8 will now download firefox. firfx tells me my mac is not compatible with ffox Please help me ?  Thank you

    trying to veiw videos from a website that requires me to download firefox and silverlight.My imac osx 10.5.8 will now download firefox. firfx tells me my mac is not compatible with ffox Please help me ?  Thank you

    There is a version of Firefox 4 available for PPC Macs:
    TenFourFox 4.0.1 Firefox 4 For PowerPC Browser Released
    Version 4.0.1 of TenFour Fox, FloodGap's port of Firefox 4 for Power PC
    Macs that supports both Mac oS X 10.4 and 10.5. has been released.
    Mozilla.org dropped support for OS 10.5 after Firefox 3.6 and for Power
    PC with the fourth beta of Firefox 4.
    TenFourFox uses almost all the same code as Firefox 4 and has nearly all
    the same features, including faster JavaScript, WebM video, and HTML 5
    and CSS 3 support, as well as new and emerging Web features, but with
    the code needed to keep your Power Mac functional and fast. Out of beta
    and it's ready for action, versiob 4.0.1 is a performance, security and
    stability update incorporating Mozilla's Firefox 4.0.1 plus AltiVec acceler
    -ation for WebM and browser graphics, and G5 JavaScript acceleration.
    For more information, visit:
    http://www.floodgap.com/software/tenfourfox/
    Source: from http://www.applelinks.com - posted April 25, 2011)
    Now for the intersting bit: TenFourFox, like Firefox, does not support most plug-ins. Unless you are prone to headaches (in which case don't) you can read about that here:
    http://code.google.com/p/tenfourfox/wiki/PluginsNoLongerSupported
    But there is a workaround!
    Open TenFourFox and type in the address bar: about:config (no spaces) and click return. This gives you a warning that it might harm the application. Ignore that and click on 'I'll be careful, I promise' and you get the config file that you can edit - with great care.
    Look/search (scroll down) for: tenfourfox.plugins.enabled
    Set it to true. (Double click it to toggle it)
    Now close TenFourFox, open it again, and Flash will now work, as it now uses the plug-ins that Safari has stored.
    With SilverLight, Microsoft attempted to create their own version of what a replacement for Flash could be - but not to universal acclaim. You can read more about it here:
    http://silverlight.net/
    So, if you go to any sites that have been designed for this new Silverlight stuff, you can download the plug-in from here (but make certain that you are downloading SilverLight v.1.0 for OS X (10.4.8 upwards) if you are using a PPC Mac, but even this will not work with Safari 4. Version 2 only works with Intel Macs and does work with Safari 4/5. The solution is to download and install the latest version of Flip4Mac, which now includes a Silverlight component:
    http://dynamic.telestream.net/downloads/download-flip4macwmv.htm
    But the latest news is that Microsoft will probably abandon Silverlight in favour of HTML5:
    http://www.appleinsider.com/articles/10/10/29/apples_ios_pushes_microsoft_to_dia l_down_silverlight_for_html5.html  and
    http://www.bbc.co.uk/news/technology-11673384

  • I'm trying to set up my new iPhone 5s from a backup of my previous iPhone, when trying to enter my Facebook login info in settings I keep getting the following error message : error signing in could not communicate with server, please help !

    I'm trying to set up my new iPhone 5s from a backup of my previous iPhone, when trying to enter my Facebook login info in settings I keep getting the following error message : error signing in could not communicate with server, please help !

    Can you access other apps? Can you acess the internet? Can you access applications that use internet besides facebook?
    If answer is yes to all of these; contact Facebook.

  • I use iphone4,but can't find apple store application please help me

    I use iphone4,but can't find apple store application please help me

    Malek,
    Facetime for iphone is not available in the App Store because it is already built into any iphone that is FaceTime compatible, and I think that includes iphone 4.  You should be able to find Facetime amongst the other built in applications that came with it.  However, it is possible that if it was purchased in certain countries where Facetime is not allowed, the App was not included.

  • Displaying Picture in a Java APPLICATION please help!!

    I have been trying to write a method that Displays a .jpg file when called. However I have not gotten far, every book I have tell you how to display pictures in an applet but not an application. I did find some code that is supposed to be for an application, but It does not compile right. Any help would be apprecidated!
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class PictureIt{
    public void makeImage() {
    //***Image Output Stream
    String imgFile
    = "d:\\temp\\TestImage.jpeg";
    out = new FileOutputStream(imgFile);
    BufferedImage image = null;
    image = (BufferedImage)createImage
    (panelJpeg.size.width, panelJpeg.size.height);
    Graphics g = image.getGraphics();
    panelJpeg.paintAll(g);
    }

    Displaying Picture in a Java APPLICATION please help!!
    Hope this helps.There is going to be two classes compile seperatly first class is what does the drawing
    here it is
    import javax.swing.*;
    import java.awt.*;
    public class draww extends JPanel {
    Image ball;
    int width1 = 100;
    int height1 = 100;
    public draww() {
    super();
    Toolkit kit = Toolkit.getDefaultToolkit();
    ball = kit.getImage("pic1.gif");
    public void paintComponent(Graphics comp) {
    Graphics2D comp2D = (Graphics2D) comp;
    comp2D.drawImage(ball, 20, 20, width1, height1, this);
    sound class is the container JFrame here it is
    import javax.swing.*;
    import java.awt.*;
    public class drawing extends JFrame {
    public drawing() {
    super("draw");
    setSize(400,400);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container pane = getContentPane();
    draww d = new draww();
    pane.add(d);
    setContentPane(pane);
    setVisible(true);
    public static void main(String[] args) {
    drawing drawing1 = new drawing();
    PS Hope this helps and see you around

  • I just installed mongolian cyrillic keyboard and it's working just fine with safari but i can't type on Word with it. please help me?

    i just installed mongolian cyrillic keyboard and it's working just fine with safari but i can't type on Word with it. please help me?

    PS Here is a source for a keyboard.  Try it if you have not done so already
    http://m10lmac.blogspot.com/2012/12/new-mongolian-keyboard-layout.html
    For questions about why Word doesn't do something, try
    http://answers.microsoft.com/en-us/mac/forum/macword

  • I can't turn off find my ihone, always show "there was a problem when canceling the registration of this iphone with icloud" please help me. i can't restore my iphone before turn off find my iphone

    i can't turn off find my ihone, always show "there was a problem when canceling the registration of this iphone with icloud" please help me. i can't restore my iphone before turn off find my iphone

    If you are the original owner of the phone and know the Apple ID and password that were used to activate it originally, and if you have an existing backup to restore from, you can force it into recovery mode (which will completely erase it) and restore it as explained here: If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support.  When you do you will encounter activation lock, and will have to provide the ID and password used to activate it originally in order to activate it again.  If you can't, you won't be able to activate and use it.

  • My factory unlocked iphone 4s mms is not working with tmobile, please help...

    my factory unlocked iphone 4s mms is not working with tmobile, please help...

    Check out this link. It should fix the problem
    http://support.t-mobile.com/thread/17918?tstart=0

  • HT1296 my outlook calendar is not syncing with Ipad. please help

    my outlook calendar is not syncing with Ipad. please help

    I've got the same problem and no one is answering to it. call up the apple support and waited for almost 30mins before i can get help, after an hour they only keep asking me for account emails and stuff, end up getting nothing solved. Sad!

  • My iphone 3gs is not syncing with itune please help me

    my iphone 3gs is not syncing with itune please help me

    Did you ever get help with this issue?

  • HT201210 cont contact apple server error please help with ipad touch 4. im just fed up with apple please help me because why is it only apple with these kind of problems?

    cont contact apple server error please help with ipad touch 4. im just fed up with apple please help me because why is it only apple with these kind of problems?

    If you mean updae server
    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem
    Otherwise what server are you talking about

  • Hey there! well i from india and i m facing problem connecting my debit card to the itune store ,as the very option is not there, can someone guide me how to get it connected , i have a mastercard debit card with me .please help me

    hey there! well i from india and i m facing problem connecting my debit card to the itune store ,as the very option is not there, can someone guide me how to get it connected , i have a mastercard debit card with me .please help me

    if you are signed in to iTunes with your AppleID, click on the AppleID > view account > payment information > enter in your information

  • HT2534 im unable to get the none option while proceeding with itunes,,.please help me

    im unable to get the none option while proceeding with itunes,,.please help me

    Please help me understand your question. (What happens in vagueness, stays in vagueness.)

  • Need urgent help with application please

    Hi i have a project for school. The application is a ball that bounces around in the frame and everytime it hits a wall it changes color and a popup menu is needed to change background color and to change the speed of the ball. I have so far got the ball to bounce and change color everytime it hits a wall and i also have a popup menu to change background color but im having trouble putting slow and fast modes on the popup menu. Below is my source code. Thread.sleep(10) is what determines the speed but i cant get it to be on the popup menu. Can somebody please help me. Thanks
    code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class WormX extends Panel implements ActionListener, Runnable{
    private String[] colorNames =
    { "White", "Gray", "Red",
    "Blue", "Black"};
    private String[] speeds =
    {"Slow", "Fast"};
    private Color[] colors =
    { Color.white, Color.gray, Color.red,
    Color.blue, Color.black };
    private PopupMenu menu;
    private PopupMenu menu1;
    final int WIDTH = 280, HEIGHT = 230;
    public static void main(String[] args) {
    Frame f = new Frame();
    f.addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(java.awt.event.WindowEvent e) {
    System.exit(0);
    WormX wx = new WormX();
    wx.setSize(320,250); // same size as defined in the HTML APPLET
    f.add(wx);
    f.pack();
    wx.init();
    f.setSize(320,250 + 20); // add 20, seems enough for the Frame title,
    f.show();
    wx.start();
    public void start(){
    Thread t = new Thread(this);
    t.start();
         PopupMenu popup;
    int headx, heady, xinc, yinc;
    Color color;
    public void paint(Graphics g){
    g.setColor(color);
    g.drawString("OOO", headx, heady); //This is what the worm looks like.
    public void run(){
    while (true){
    putWorm();
    repaint();
    try{
    Thread.sleep(10); //This adjusts the speed of the worm
    catch (InterruptedException e){
    e.printStackTrace();
    void checkWorm(){                      //checkworm is the coding for changing the colour of the worm
    if ((headx >= WIDTH) || (headx <= 0)){
    xinc *= -1;
    changeColor();
    else if ((heady >= HEIGHT) || (heady <= 0)){
    yinc *= -1;
    changeColor();
    void changeColor(){    color = new Color((int)(Math.random() * 1677721));
    void putWorm(){
    headx += xinc;
    heady += yinc;
    checkWorm();
         public void init() {
    xinc = 2;
    yinc = 2;
    color = Color.black; //This is the base colour of the worm
    headx = (int)((Math.random() * WIDTH / 2) + WIDTH / 4);
    heady = (int)((Math.random() * HEIGHT / 2) + HEIGHT / 4);
    resize(WIDTH, HEIGHT);
         setBackground(Color.gray);
    menu = new PopupMenu("Background Color");
    enableEvents(AWTEvent.MOUSE_EVENT_MASK);
    MenuItem colorName;
    for(int i=0; i<colorNames.length; i++) {
    colorName = new MenuItem(colorNames);
    menu.add(colorName);
    colorName.addActionListener(this);
    menu.addSeparator();
    add(menu);
    menu1 = new PopupMenu("Speed");
    enableEvents(AWTEvent.MOUSE_EVENT_MASK);
    MenuItem speed;
    for(int i=0; i<speeds.length; i++) {
    speed = new MenuItem(speeds[i]);
    menu.add(speed);
    speed.addActionListener(this);
    menu.addSeparator();
    add(menu);
    public void actionPerformed(ActionEvent event) {
    setBackground(colorNamed(event.getActionCommand()));
    repaint();
    public void processMouseEvent(MouseEvent event) {
    if (event.isPopupTrigger())
    menu.show(event.getComponent(),
    event.getX(), event.getY());
    super.processMouseEvent(event);
    private Color colorNamed(String colorName) {
    for(int i=0; i<colorNames.length; i++)
    if(colorNames[i].equals(colorName))
    return(colors[i]);
    return(Color.white);

    I honestly don't know. I never had this Exception.
    But look at the API:
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/InterruptedException.html
    Obviously, Java doesn't like what you do with your thread. Altogether, I'm not sure if your design isn't flawed. Basically, you pause your whole application regularly, so that it seems that you have a regular time flow. This is like doing slow motion on your DVD player by constantly pressing "play" and "pause".
    Think about using the swing timer instead:
    http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/Timer.html
    So, instead of binding your moving object to your main class, you can trigger it by the timer. Think about it.
    Edit: As I see now, you DID catch the InterruptedException around the Thread.sleep(10) in your original code. Why did you do it in the first place, and why don't you now?
    You can just catch the Exception, and leave it like that. However, when an Exception occurs regularly, it would be better to know why.
    Editedit: Also, you declare the same class which is a panel als as a thread. AWT/Swing don't like it when create new Threads for the GUI, since AWT/Swing bring their own Thread for Event Handling. So, whatever you do with any kind of Threads, do it in some class which doesn't inherit from some visual component!

Maybe you are looking for

  • Basic questions regarding installing Forefront EP Client 2010 on Windows 2012 R2

    Hi, We have a handful of servers and client machines (although these always seem to be expanding) and as such have previously just installed the Forefront Endpoint 2010 Client manually onto the various endpoints with updates being pushed via WSUS fro

  • Delete  'button' on report how to do this?

    Hi, I have a requirement to implement a 'delete' button on a report, but cannot find out how to do it. I found the following site which does exactly what I want, but cannot get to the code to see how the author has done it can any one assist please?

  • Purchase Order Soft copy

    Dear all, I am working as a technical consultant in a reputed company.Now my client requirement is whenever we approve PO there will be check box Email.If we click on email button then PO soft copy will be sent to the client.But instead of the defaul

  • IMac won't start

    My 2007 iMac [10.6.8] has been getting slower and slower to start, ultimately taking two hours on the rare times I did it until now when it just stuck on the grey Apple screen. The disk is OK, in Target mode and using Disk Utils from my MacBook Pro,

  • Quality of imported Bitmap (BMP or PNG)

    I'm in trouble with the impage importation in Flash 5. I would like to import a BMP or PNG and mantain the "pixel" definition (I don't want blur effect around margin..) I tried in every way and settings but I can't do it!!!!!!! Is it possible? Is it