How do I package a written program?

I finally got my first little fun program done -- now where do I find out how to package this so that people can use it?
I would also like to find out how to set it up for use on a webpage. NOT an applet but through the Java Web Start.
Can someone help me? Thanks!

http://java.sun.com/docs/books/tutorial/deployment/jar/
http://java.sun.com/j2se/1.5.0/docs/guide/javaws/index.html

Similar Messages

  • How to change package for the program or t code if package not available?

    I have a T Code that was imported from ECC5 to BW system.
    This t code as well as its program have a package ZXYBC assigned in ECC5 system.
    However, the package that it was assigned (ZXYBC) does not exist in BW but exists in ECC5.
    Now I am not able to do any modifications (in the BW system)  to the T Code or its associated program as the Package ZXYBC does not exist in BW.
    Note: Change Object Directory Entry does not work.
    Any suggestions?
    Thanks.

    Open your main program of your TCODE in SE80 transaction.(Go to se93 transaction to get the program name for your TCODE).
    Right click on the root node.
    Other Functions->Change Package Assignment.
    GIve the new package name (THis package should be already created in your system).
    Regards,
    Ravi

  • HT1926 when trying to setup itunes on my pc i get the following message: there is a problem with this Windows installer package. A program required for this install to complete could not be run. How could I solve this problem?

    when trying to setup itunes on my pc i get the following message: there is a problem with this Windows installer package. A program required for this install to complete could not be run. How could I solve this problem?

    Repair your Apple software update.
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you don't find ASU, go to Control Panel:
    START/CONTROL PANEL/Programs n Features/highlight ASU and click REPAIR,

  • TS3212 What does this mean, and how do you fix it? "There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vender."

    What does this mean, and how do you fix it?
    "There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vender."
    Trying to install iTunes 10.7, first attempt; downloaded and ran with everything closed, seccond atttempt; just click on run, third attempt; ran upgrade with iTunes open. All of the results were the same.
    Is there something wrong with the iTunes 10.7 Windows installer package?

    Try the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • I keep getting a message that "There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected." when I try to download iTunes 10.5. So I can't update it. How can it be fixed?

    When I try to download iTunes 10.5, I keep getting the message "There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected." Therefore I can't update my iTunes to the new version. How can I solve this? I don't want to pay for technical support as this seems to be a problem with the iTunes package Apple is providing itself by that message.

    Hello, hartadrian.
    I would recommend attempting to repair the Apple Software Update via the steps below.  Once processed attempt to download, update or install iTunes 11. 
    How to repair Software Update for Windows
    http://support.apple.com/kb/TA24326
    If you are still experiencing the issue, completely remove all components of iTunes in the order specified of the article below.  Once this has been processed, attempt to download and install iTunes 11. 
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    If you experiencing errors when removing components of iTunes, follow the steps in the article below. 
    "The feature you are trying to use is on a network resource that is unavailable" alert when removing Apple software in Windows
    http://support.apple.com/kb/TS3704
    Cheers,
    Jason H. 

  • How can I use a Java program to write an executable Applescript

    I'm using a PC with Windows XP. I'm a private developer. I've written a project in Java and wish to deploy it to other people using email. I've written an Install program (the Main-Class) and successfully packed this in a jar file with the project class files and some data files all as described in the deployment trail in the Java Tutorials. A recipient with a Mac with OS X downloads the jar file and runs it to install the project class files and some data files. The install program then writes an Applescript file (Vocab.scpt shown below) on the Desktop to make starting my downloaded program easier but it doesn't seem to work and I think it may be because the script file is not "executable". Could this be the case? If so, how could I change my install program to make the script file executable or alternatively use some other system to start the downloaded program?
    Vocab.scpt:-
    # Script to start: Vocab Version: 1.0.0
    do shell script "cd /Applications/Vocab; Java Vocab"
    Many thanks for your interest. Unfortunately I don't have a Mac to experiment with this problem and although I have spent some days on and off trying to find an answer in the mass of information available on Apple's website I can only find small clues here and there to answer my problem (which I would have thought was quite a common one). In Windows a batch file (eg. Vocab.bat) is automatically executable.

    I didn't expect you to have your customer run the command. I would expect you to create the executable and install it. However, there wouldn't be any difference in what you are creating and the .jar file. Either way it is a faceless icon. For that matter, it is no different than a batch file on Windows. I'm not sure what they wouldn't understand with, "copy the Vocab.jar file to wherever you want and double-click it to run the program." In addition, you probably ought to point out that Java is not installed on Mac OS X Lion (10.7.x) and when they double-click the jar file (or whatever you send them), the system will ask if they want to install Java.
    What you really need to do is package up the app inside a Mac application package and provide the user with the application on a .dmg (disk image). Take a look here: http://developer.apple.com/library/mac/#documentation/Java/Conceptual/Jar_Bundle r/Introduction/Introduction.html#//apple_ref/doc/uid/TP40000884
    I also found this which uses ANT to create the bundle: http://informagen.com/JarBundler/

  • How to run command line argument programe

    Hi guys, I am doing pass command line argument programe in java but I don't know how to run this programe. Path for this programe in my my computer is C:\Users\Desktop\Mainjava\mycode\CommandProgjava*
    {code/}
    public class CommandProg
    public static void main(String[] args)
    System.out.println("d");
    for (int i = 0; i < args.length; i++)
    System.out.println(args);
    {code/}
    Where i need to go and what command i need to give so i can execute this programe(I am using window vista). I only know i have to give
    this command some where CommandProg arg1 arg2 arg3 arg4. Output should be
    Output:
    arg1
    arg2
    arg3
    arg4
    Please help me, Thanks in advance.
    Edited by: JayVirk on Dec 30, 2007 11:33 AM

    Jay,
    Your question isn't very clear, hence Joerg's well meaning but irrelevant advise.
    Do you mean:
    I've written a simple program in java which echos
    it's command-line arguments to back to the console.
    Here's my code:
    package forums;
    public class ArgsEchoer
      public static void main(String[] args) {
        for (String arg : args) {
          System.out.println(arg);
    But can't figure out how to compile and run the program.
    I'm using winblows shista, and it's cr@p.
    Please help me, Thanks in advance.So... where are you at? Have you installed the JDK (java development kit)? Which version? Is your path set? Is your classpath set?
    Start here: http://java.sun.com/developer/onlineTraining/new2java/

  • I'm trying to install iTunes 10.3 on my PC (windows vista) and I keep getting this message, "There is a problem with this windows package. A program required for this install to complete could not be run. Contact your support personnel or package vendor."

    I'm trying to install iTunes 10.3 on my PC (windows vista) and I keep getting this message, "There is a problem with this Windows Installer Package. A program required for this install to complete could not be run. Contact your support personnel or package vendor." I accidentally removed the Bonjour service from my system a few weeks ago, but my iTunes continued to work. Now I have no iTunes and I don't know how to fix it. SOMEONE PLEASE HELP!!!!

    a colleague of mine suffers from the same problem. did a quick look on the apple support pages. found many topics covering the same problem.
    also saw 1 marked as correct answer... (just browse the discussion pages before you ask, this answer appearantly was sitting there from oct. 14...)
    (i'm not on windows, so i can't test...)
    good luck!
    j.
    Correct Answer by Peter Lepere  on Oct 14, 2011 3:07 AM
    Hi Rick,
    by "repair" I mean I went to the control panel, option - programs and features, and in the list of all my installed programs I selected "Apple Software Update". On top of the screen you find the options Uinstall, Change and Repair. I clicked the repair button and that did the trick. After the repair I could uninstall the program. I also uninstalled iTunes, Apple Application Support, Apple Mobile Device Support en Bonjour, thus all Apple programs. Then I installed iTunes 10.5 again and everything went fine.
    Success,
    Peter

  • HT1926 When I try to update ITunes on my PC (Windows XP), the repeated message is "There is a problem with this Windows Installer package.  A program required for this install to complete could not be run.  Contact your support personnel or package vendor

    How to update ITunes on my PC (Windows XP)?? Repeated attempts produce this messsage: "There is a problem with this Windows Installer package.  A program required for this install to complete could not be run.  Contact your support personnel or package vendor."  I have an older version of ITunes on the computer.  Why can't I update it?
    MMettler

    Repair your Apple software update.
    Go to START > ALL PROGRAMS > Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you don't find ASU, go to Control Panel:
    START > CONTROL PANEL/ > Add n Remove Programs, highlight ASU and click CHANGE then REPAIR

  • Error when downloading itunes 10.5 that says Product: Apple Software Update -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package ven

    Each time I attempt to download the new itunes 10.5 I keep getting the following error message:
    Product: Apple Software Update -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action SoftwareUpdate_UnregServer, location: C:\Program Files\Apple Software Update\SoftwareUpdate.exe, command: /UnregServer
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Any Ideas of how to solve this one?

    After reading all these posts, one by one did not resolve my problem until I got the very end.  Regardless of what step would resolve your problem, these are the steps I would recomment to everyone for a what seems to be a safe and fool-proof upgrade to iTunes 10.5.
    1. Stand alone upgrade to the latest Quicktime version
    2. Go to control panel and "change" then select repair to the following applications in the order specified by the post on Oct 27. (Notice I skipped Quicktime because it had been upgrade manually,and Bonjour did not have a "repair" option)
    iTunes; Apple Software Update: Mobile Device Support; Apple Applications Support
    Some of these applications may not appear if they do not apply to your configuration (no iPhone, or no iPad, or other apple devices).
    Once all updated, I did not need to restart nor launch any applications, I simply went straight into the 10.5 upgrade, and where it normally got stuck, this time the installation continued for a while longer until it completed successfully.
    Great work everyone who contributed!  Thank you very much!

  • I'm trying to update itunes and keep getting the message"There is a problem with this windows installer package. A program required for this install to complete could not be run. Contact your support personal or package vendor"  Anyone know now to fix?

    I keep getting the message" There ais a problem with this windows Installer Package. A program required for this install to complete could not be run. Contact your support personnal or package vendor".  I get this whentrying to update itunes. 
    Does anyone have a idea how to fix this/
    Thanks

    Try the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • Using iphoto, how do I print a written description upon an image?

    Would like my images to have descriptive text boxes. Want to be able to print descriptions at the same time, on the face of a photo without having to go into Adobe Photoshop. Using the iPhoto program, how do I print a written description upon an image?

    select the picture(s), then selec the menu item "Info" button (bottom-right):
    Then add a description using the description field.  For individual descriptions by picture select only one picture at a time.
    Now select the picture(s) you want to print and select the menu item "File > Print" then in the bottom right choose the "Contact" format:
    selec thte number of columns, then click the "Captions" button to select which items are included as the caption:
    Click "Ok" then click "Print" at the bottom of the iPhoto window

  • How to create package name  what is the transaction code for creation

    Hi,
    I want to create the package and also put that package in my program, how to put the package already saved program.

    Hello Rajyalakshmi
    You do not put a package to or into a program but <b>ASSIGN </b>a report to a package. To reassign a report to a new package (e.g. from $TMP to z-package) call transaction SE80 and right-click on the report name in the tree display. Choose the following function in the context menu:
    Other Functions -> Change Package Assignment
    Regards
      Uwe

  • How can you get a java program working on a cell phone?

    I was thinking of making some stuff for cell phones so i was wondering how you get a normal java program to work on cells.

    its all j2me - midlet package....Huh? The jsr-118 MID profile alone has 11 packages, one of which is javax.microedition.midlet. Notj2me - midlet.
    works best on nokia phones.Sez who? You seem to be confusing Java ME with Symbian C.
    you can use net beans midlet packge add-on.Only it's called the NetBeans Mobiliity Pack.
    Its easy to use and has lots of tutorials.Ditto for the Wireless toolkit for CLDC.
    just search on google.Yes, but with which keywords?
    @OP:
    NetBeans mobility pack comes with a short tutorial and several samples, you also need to download the latest WTK as the ver. 2.2 which comes bundled with NetBeans is just too buggy to work with. Then there are the manufacturer-specific SDKs from Nokia, Motorola, Sony Ericsson and (maybe) others.
    If and when you get started in Java ME aka j2me, it will be appropriate to post any questions you might have on the mobility forums, not here.
    Google "j2me tutorial" for many good hits.
    luck, db

  • How to Install crystal run time programs with out designer.

    Can anyone suggest me  how to install crystal run time program with out installing entire designer software.
    Is it coming along with CR software package, which we have to do custom install or is it coming as a different package.  
    Currently my client is using only the run time programs to trigger crystal  report from VB app but developers have installed entire software for development.  We need to figure out how this install can be done, as it was done long time before and folks who have done it left the company.  
    Any suggestion on this would be of great help to me.

    See this wiki:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0
    Ludek

Maybe you are looking for

  • Return value from database function taking a lot more time than the query

    Hi guys, I have a Query that does a call to a database function. The function takes in a few parameters and returns a Date. Now, the query within the function takes barely .05 seconds. However, doing a select get_join_dates from dual is taking almost

  • Why .pdf file, created by Acrobat Distiller 10.1.2. (Windows) failed to convert to MS Word

    I tried to convert .pdf file  to MS Word, but it failed. I noticed in  a previous discussion on that topic that this converter ccnnot work with .pdf files cteated by certain producers My was created by Acrobat Distiller 10.1.2. (Windows) Is that a ro

  • Database setup with MySQL and PHP question

    Hello all, I recently had a problem getting a report to work for a site I was updating.  This site is written in PHP with a MySQL database.  The application is to track customer calls to auto repair stores.  The database has a lot of foreign keys bec

  • Pictures don't display on web pages

    when visiting a web page that shows product pictures, none of the pictures show up. This does not happen in IE for windows.

  • Sales order to purchase requisition

    HI ,           I am trying to create a PR automatically from sales order , but when creating a sales order , I am manually enabling the check box for "GR based IV" and "GR non valuated " in sales order so that its copied to PR accordingly , Can anyon