The Artima Developer Community
Sponsored Link

Java Answers Forum
How to Make my program available to all

2 replies on 1 page. Most recent reply: Jul 9, 2002 3:24 PM by DAYO

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 2 replies on 1 page
DAYO

Posts: 22
Nickname: done
Registered: Jun, 2002

How to Make my program available to all Posted: Jul 8, 2002 5:15 AM
Reply to this message Reply
Advertisement
I have written a java (GUI) program and it works fine on my computer.
I want people to be able to use the program from anywhere.I guess this is what is refered as on-line.
I was wondering if anybody could offer suggestion on how to do this.
The program involves user given INPUT(either by typing in directly on loading from there computer), the program gives output which users can save on to the computer.
Thank you
Here is a skeleton of my program:

import javax.swing.*;
import javax.swing.event.*;import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
//import java.lang.Object;
public class testing4 extends JFrame
{ public void init()
{ //setting up of the GUI layout
}
private class MyDocumentListener implements DocumentListener
{
}
public void load()
{
}
public void save()
{
}
...
...
//all other methods
}


Matt Gerrans

Posts: 1153
Nickname: matt
Registered: Feb, 2002

Re: How to Make my program available to all Posted: Jul 8, 2002 9:57 AM
Reply to this message Reply
Maybe you could sell it to Microsoft and strong-arm them into bundling it with all versions of Windows...

DAYO

Posts: 22
Nickname: done
Registered: Jun, 2002

Re: How to Make my program available to all Posted: Jul 9, 2002 3:24 PM
Reply to this message Reply
Hope that was not a joke?Quite Stupid don't you think.
Does anybody know if JAVA webstart will be of any use.
Any other SENSIBLE idea is welcome.

Flat View: This topic has 2 replies on 1 page
Topic: Modifying a txt file on my pc by using an applet form Previous Topic   Next Topic Topic: using JSplitPane with JScrollPAne

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use