Executable Program (fileName.exe)

i want to make my java program as an executable file,
i mean by double click on the icon the program will be executed.
please give me the steps in details.
and thank in advance.

follow these steps to find your answer :
search in this forum for your question and read each topic that have answer.
There you will find the answers to your questions.
Godd Luck.
Marc.
PS: this question has been posted a lot of time, so the answer is hidden somewhere in a post.

Similar Messages

  • Windows 7 x64: Execute a 64bit exe/script from a 32bit command prompt?

    Anyone have any tricks up their sleeve to do as the title says?  For example:
    I'm working within a 32bit app that calls a command using cmd.exe.  In taskmanager we see cmd.exe*32
    From that cmd.exe, say we want to launch notepad.exe.  Obviously taskmanager will show notepad.exe*32.  We want plain old "notepad.exe" running in 64bit mode.
    Thoughts:
    I've been unable to do this using vbscript and may try a .NET console application next.
    Another thought is to set up a schtask, run it, then delete it....but that sounds messy.
    Am I missing something that would make this extremely easy?

    Well, I'm working within WiseScript Editor and SMS Installer. They are 32bit compiled scripting languages so, if I launch notepad.exe from within the compiled Wise or SMS Installer scripts, using either their built-in Execute Program command the OS
    always launches the process as a 32bit process as the parent process is 32bit even when trying to specify notepad.exe in %WINDIR%\system32.
    I did, however, find a solution using vb.net.  I compiled the following code as a console app named cmdx64.exe
    Module Module1
        Sub Main()
            Dim arrArgs As Array
            Dim Args As String = ""
            Dim intCount As Integer = 0
            arrArgs = System.Environment.GetCommandLineArgs()
            For Each Arg In arrArgs
                If intCount <> 0 Then Args = Args & " " & Arg
                intCount = intCount + 1
            Next
            Shell("cmd.exe /C" & Args, AppWinStyle.NormalFocus, True)
        End Sub
    End Module
    Now when I run "cmdx64.exe notepad.exe" from within WiseScript Editor and SMS Installer instead of getting notepad.exe*32 I now get the 64bit flavor. So...I guess I answered my own question but it required a custom console command.  I was hoping
    for a native solution.

  • How to Add New Parameter in Cluster with LabVIEW Executable Program?

        In this VI,it can write the parameter in Cluster to the database (Access 2003).it run well.
        But When I add another parameter in Cluster,such as EE,I have to modify this Cluster. And at the same time,I have to modiy the database (I should add a column of EE).if this vi build to exe, how can I achieve it?Can LabVIEW have any way to increase new parameter EE in Cluster and in Database in executable program?
        Would you give me some advice?Thank you
    Attachments:
    Add ParaMeter In Cluster 20130206.zip ‏105 KB
    Cluster.JPG ‏9 KB

    It's rather unclear what you try to do here. In your first post you talk IMHO about the high level Datatbase Toolkit functions that take a cluster and translate it automagically into the appropriate SQL Query/Update.
    Your second question seems to be about the user interface of your application.
    Proper application design would mean to separate the user interface aspect from the actual database query in some ways. I definitely wouldn't use the same cluster for both. Also if you simply hide a control on the frontpanel (possible also in an executable) it still is present logically and if you end up using the high level database toolkit functions with that cluster it will result into a query or update of the database with all the data in the cluster, also the hidden ones.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Calling a report from a executable program

    Hi All,
    i want to call a report which is generated by tcode CO88 from a executable program. I want to pass the values of order from the exe program only. But my requirement is such that i want co88 to process only open orders, so please suggest how can i do that.
    thanks in advance.
    Pankaj Sharma

    hi,
    chk this sample.
    *Code used to populate 'select-options' & execute report 
    DATA: seltab type table of rsparams,
          seltab_wa like line of seltab.
      seltab_wa-selname = 'PNPPERNR'.
      seltab_wa-sign    = 'I'.
      seltab_wa-option  = 'EQ'.
    load each personnel number accessed from the structure into
    parameters to be used in the report
      loop at pnppernr.
        seltab_wa-low = pnppernr-low.
        append seltab_wa to seltab.
      endloop.
      SUBMIT zreport with selection-table seltab
                                    via selection-screen.
    *Code used to populate 'parameters' & execute report 
    SUBMIT zreport with p_param1 = 'value'
                    with p_param2 = 'value'.
    Other additions for SUBMIT
    *Submit report and return to current program afterwards
    SUBMIT zreport AND RETURN.
    *Submit report via its own selection screen
    SUBMIT zreport VIA SELECTION-SCREEN.
    *Submit report using selection screen variant
    SUBMIT zreport USING SELECTION-SET 'VARIANT1'.
    *Submit report but export resultant list to memory, rather than
    *it being displayed on screen
    SUBMIT zreport EXPORTING LIST TO MEMORY.
    Once report has finished and control has returned to calling
    program, use function modules LIST_FROM_MEMORY, WRITE_LIST and
    DISPLAY_LIST to retrieve and display report.
    rgds
    anver
    if hlped pls mark points

  • How to create executable programs

    How can I create an executable program using J2SDK 1.2.2?
    Thank you

    There are some programs that can do what you are looking for but most of them just include the JRE in the project and make a small wrapper .exe that calls it.
    I agree with MarcinSc - you should make your friends install the JRE even for their own good.

  • Creating an executable program to control a machine

    Hello
    I've created an executable program under Labview that I want to install
    on a computer without Labview to control a machine. On the second
    machine I have just installed Labview runtime, driver for measurecard
    (ni) and daq.
    How can I save this application as an exe file, or as an install or
    setup file? How can I put the library, dll-files and vi-files in the
    exe-file?
    Fahri

    To create an .exe, you need the application builder. It is included with the Professional versions of LabVIEW or you can purchase it separately as an add-on. I think the current price is U$995. The app builder inlcudes an installer that you can use to package the .exe and any support files that you might need.

  • Need Simple Executable program

    Hi
       I'm not an ABAPer  .so, please help me in this task... I want to write an executable program in taht i just call an BAPI (BAPI_COMPANY_GETDETAIL )   and for this BAPI  i want to pass  the COMPANY ID . and RFC destionation are the input parameters...
    because if i execute this BAPI menas.. the output of this BAPI i want to send it to external system.. that configuration is done... only thing is.. how can we pass those RFC destiona and COMPANYID as inputs  to the bapi..
    if possible please give me  the solution
    Thanks
    Babu

    Hi,
    BAPI stands for Business API(Application Program Interface).
    A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    The following standardized BAPIs are provided:
    Reading instances of SAP business objects
    GetList ( ) With the BAPI GetList you can select a range of object key values, for example, company codes and material numbers.
    The BAPI GetList() is a class method.
    GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved and returned to the calling program. The instance is identified via its key. The BAPI GetDetail() is an instance method. BAPIs that can create, change or delete instances of a business object type
    The following BAPIs of the same object type have to be programmed so that they can be called several times within one transaction. For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction, the second BAPI call must not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
    Create( ) and CreateFromData! ( )
    The BAPIs Create() and CreateFromData() create an instance of an SAP business object type, for example, a purchase order. These BAPIs are class methods.
    Change( )
    The BAPI Change() changes an existing instance of an SAP business object type, for example, a purchase order. The BAPI Change () is an instance method.
    Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database or sets a deletion flag.
    The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
    Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type. The instance to be cancelled remains in the database and an additional instance is created and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
    Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst! ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are instance methods.
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    just refer to the link below
    http://www.sapmaterial.com/?gclid=CN322K28t4sCFQ-WbgodSGbK2g
    list of all bapis
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    for BAPI's
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.topxml.com/sap/sap_idoc_xml.asp
    http://www.sapdevelopment.co.uk/
    http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
    Also refer to the following links..
    www.sap-img.com/bapi.htm
    www.sap-img.com/abap/bapi-conventions.htm
    www.planetsap.com/Bapi_main_page.htm
    www.sapgenie.com/abap/bapi/index.htm
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    Example Code
    U need to give the step_nr, item_nr, cond_count and cond_type so the correct conditon will be updated. If no condition exists for the given parameters, a new condition will be created.
    U can find these parameters for a particular condition type in table KONV.
    *& Form saveTransactionJOCR
    text
    --> p1 text
    <-- p2 text
    FORM saveTransactionJOCR .
    data: salesdocument like BAPIVBELN-VBELN,
    order_header_inx like bapisdh1x,
    order_header_in like bapisdh1,
    return type standard table of bapiret2 with header line,
    conditions_in type standard table of bapicond with header line,
    conditions_inx type standard table of bapicondx with header line,
    logic_switch like BAPISDLS,
    step_nr like conditions_in-cond_st_no,
    item_nr like conditions_in-itm_number,
    cond_count like conditions_in-cond_count,
    cond_type like conditions_in-cond_type.
    salesdocument = wa_order_information-VBELN.
    LOGIC_SWITCH-COND_HANDL = 'X'.
    order_header_inx-updateflag = 'U'.
    conditions
    clear conditions_in[].
    clear conditions_inx[].
    clear: step_nr,
    item_nr,
    cond_count,
    cond_type.
    step_nr = '710'.
    item_nr = '000000'.
    cond_count = '01'.
    cond_type = 'ZCP2'.
    CONDITIONS_IN-ITM_NUMBER = item_nr.
    conditions_in-cond_st_no = step_nr.
    CONDITIONS_IN-COND_COUNT = cond_count.
    CONDITIONS_IN-COND_TYPE = cond_type.
    CONDITIONS_IN-COND_VALUE = 666.
    CONDITIONS_IN-CURRENCY = 'EUR'.
    append conditions_in.
    CONDITIONS_INX-ITM_NUMBER = item_nr.
    conditions_inx-cond_st_no = step_nr.
    CONDITIONS_INX-COND_COUNT = cond_count.
    CONDITIONS_INX-COND_TYPE = cond_type.
    CONDITIONS_INX-UPDATEFLAG = 'U'.
    CONDITIONS_INX-COND_VALUE = 'X'.
    CONDITIONS_INX-CURRENCY = 'X'.
    append conditions_inx.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    SALESDOCUMENT = salesdocument
    ORDER_HEADER_IN = order_header_in
    ORDER_HEADER_INX = order_header_inx
    LOGIC_SWITCH = logic_switch
    TABLES
    RETURN = return
    CONDITIONS_IN = conditions_in
    CONDITIONS_INX = conditions_inx
    if return-type ne 'E'.
    commit work and wait.
    endif.
    ENDFORM. " saveTransactionJOCR
    Bdc to Bapi
    The steps to be followed are :
    1. Find out the relevant BAPI (BAPI_SALESORDER_CHANGE for VA02).
    for VA01 use BAPI_SALESORDER_CREATEFROMDAT2
    2. Create a Z program and call the BAPi (same as a Funtion module call).
    2. Now, if you see this BAPi, it has
    -> Importing structures.
    eg: SALESDOCUMENT: this will take the Sales order header data as input.
    -> Tables parameters:
    eg: ORDER_ITEM_IN: this will take the line item data as input.
    Note :
    Only specify fields that should be changed
    Select these fields by entering an X in the checkboxes
    Enter a U in the UPDATEFLAG field
    Always specify key fields when changing the data, including in the checkboxes
    The configuration is an exception here. If this needs to be changed, you need to complete it again fully.
    Maintain quantities and dates in the schedule line data
    Possible UPDATEFLAGS:
    U = change
    D = delete
    I = add
    Example
    1. Delete the whole order
    2. Delete order items
    3. Change the order
    4. Change the configuration
    Notes
    1. Minimum entry:
    You must enter the order number in the SALESDOCUMENT structure.
    You must always enter key fields for changes.
    You must always specify the update indicator in the ORDER_HEADER_INX.
    2. Commit control:
    The BAPI does not run a database Commit, which means that the application must trigger the Commit so that the changes are read to the database. To do this, use the BAPI_TRANSACTION_COMMIT BAPI.
    For further details... refer to the Function Module documentation for the BAPi.
    Bapi to VB(Visual Basic)
    Long back I had used the following flow structure to acheive the same.
    Report -> SM59 RFC destination -> COM4ABAP -> VB.exe
    my report uses the rfc destination to create a COM session with com4abap. com4abap calls the vb.exe and manages the flow of data between sap and vb exe.
    You need to have com4abap.exe
    If com4abap is installed you will find it in sapgui installatin directory , C:\Program Files\SAPpc\sapgui\RFCSDK\com4abap.
    else refer OSS note 419822 for installation of com4abap
    after making the settings in com4abap to point to the vb program and setting up rfc destination in sm59 to point to com4abap session , you can use the following function modules to call the vb code.
    for setting up com4abap and rfc destination please refer to the documentation for com4abap.
    Invoke NEW DCOM session
    call function 'BEGIN_COM_SESSION'
    exporting
    service_dest = service_dest "(this will be a RFC destination created in SM59)
    importing
    worker_dest = worker_dest
    exceptions
    connect_to_dcom_service_failed = 1
    connect_to_dcom_worker_failed = 2
    others = 3.
    call function 'create_com_instance' destination worker_dest
    exporting
    clsid = g_c_clsid
    typelib = g_c_typelib
    importing
    instid = g_f_oid
    exceptions
    communication_failure = 1 message g_f_msg
    system_failure = 2 message g_f_msg
    invalid_instance_id = 3
    others = 4.
    call function 'com_invoke' destination worker_dest
    exporting
    %instid = g_f_oid
    %method = 'UpdatePDF'
    sntemp = g_v_const_filent
    snsysid = sy-sysid
    snflag = 'N'
    tables
    rssaptable = g_t_pdfdetail1
    %return = g_t_pdfdetail1 "t_test
    exceptions
    communication_failure = 1 message g_f_msg
    system_failure = 2 message g_f_msg
    invalid_instance_id = 3
    others = 4.
    then close the com session , using
    FM delete_com_instance
    FM END_COM_SESSION
    Thanks
    Sarada

  • Executable program not able to open

    I have created an executable program which is distributed with the 8.5 runtime engine. When deployed on the target systems (XP) the executable will open on the taskbar for a few seconds then just disappear. But on some systems (also XP) the program will open and operate normally. There is no DAQ in this application, it is purely a visualization tool for some text files. I have had this problem before, but now it is more serious because my program is distributed world wide to our organization.
    I could find no references to this problem. I have an error dialog at the end of my application, if there was an error reported, I would be able to see it, but nothing happens, the window just disappears without opening. The normal VI version has not problems at all.
    Thanks,
    Henry

    Hello everyone,
    I did the whittle down to the problem in my code. I can clearly identify that this problem has to do with the NI_AALPro.lvlib functions.
    If you look at the image I attached, it is quite clear that there is nothing else in going on in my once large, now very small program !!
    If I remove this function, the program compiles and runs properly !
    Now the question is why do the NI_AALPro.lvlib functions work on some PCs, but not others? As my application requires the use of these functions, I am under pressure to find a solution.
    Thanks
    Attachments:
    exe no start.JPG ‏5 KB

  • How to get the console output generated by a executable program?

    when I am trying to use method getOutputSteam of Process to gain the outputStream,I got nothing!
    I have also tried to use stream redirect,also no result!
    please help me! Thank you in advance!
    my main code are below:
    Process ps=Runtime.getRuntime().exec("xxx.exe");/*xxx.exe is a executable program which will generate a console with the message I want to gain.*/
    int exitVal= ps.waitFor();
    if(exitVal==0){
    BufferredReader br = new BufferedReader(new InputStreamReader(ps.getInputStream()));               String st;
    while((st = br.readLine()) !=null){
    System.out.println("write:"+st);
    }//my result show that I got nothing from the progam.
                                                           }

    I've seen this kind of problem with an offending xxx.exe. Generally it means that the program isn't flushing its output immediately, so your java program never sees it.

  • Execute Class Files (.exe)

    Hi!
    How could I change a java program into a execute program ( .exe) under Windows NT?
    Thanks

    Look into the jar tool.
    http://developer.java.sun.com/developer/onlineTraining/Programming/BasicJava2/jar.html#jar

  • Can a labview executable program be converted back?

    Can an executable program be editted?

    No. What you're asking for is the equivalent of editing Word, Excel, or any other executable. In theory, you can use a disassembler to view and modify the exe but you had better be extremely proficient in assembly code and the details of the LabVIEW compiler. With some older versions of LabVIEW, there was the option to create an executable without removing the diagram. On the off chance that you might have one of these, change the exe extension to llb and see if you can open anything.

  • Does any one know how to execute program in Jump developer desktop

    hi,
    Does any one know how to execute program in Jump developer desktop,
    actually i copied the hello world project from my eclipse workspace to jump
    developers workspace and once i run the program it asks for the main class
    and then i gave main class as my HelloWorld Class,it generates error as
    java.lang.NoSuchMethodError: main
    Exception in thread "main"
    Can any one help me to come out of this problem.....
    Thanks
    MRaj

    i solved it,
    thanks
    MRaj

  • While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this?

    While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this? Reinstalling the application does not clear the error, so I'm assuming the association is somewhere in Firefox.

    Never mind -- I just found it under Tools/Options.../Applications, where I changed the incorrect association of "nlmcp" from Windows Media Player to the correct one, NetLibrary Media Center. Done!

  • Error while executing program RFUMSV50 for deferred tax

    Hi,
    While executing program throgh T.Code S_AC0_52000644 - Deferred Tax Transfer (New), program RFUMSV50, system gives error as Message no. F7229 Only company codes without a jurisdiction code permitted.
    We are using TAXINJ procedure.
    We have implemented SAP Note  No. 921634.
    Kindly suggest solution ASAP.
    Regards,
    mahesh

    Hello Samay,
      I believe you are running the query in Excel.
    You are in 700. I would advise to use the latest patch if possible ( > 904 ).
    May be, that will solve your issue.
    Otherwise, please attach the trace file details.
    You can record a front-end trace as follows:
    1.) Start BExAnalyzer
    2.) Go To Global Settings
    3.) Go to the trace tab
    4.) Check "Record Trace"
    5.) Close the dialog
    6.) Close BExAnalyzer
    7.) Reproduce the problem
    After the "Critical Program Error" popup appears you find a file
    BExAnalyzerTrace.txt in the %temp% folder.
    Regards,
    Sheik Bilal

  • When  i executed program , it go to dump, show this error

    Hi Gurs
    when  i executed program , it go to dump, show this error .
    Short text                                                   
         The ABAP program lines are wider than the internal table.
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLSKBH" had to be terminated because it has 
    come across a statement that unfortunately cannot be executed.          
    it show this lines.
        read report l_prog_tab_local into l_abap_source.          
      366 *      catch cx_sy_read_src_line_too_long into ex_too_long.   
      367 *    endtry.                                                  
      368     check sy-subrc eq 0.
    Edited by: Rob Burbank on Feb 17, 2010 2:54 PM

    d022s length is only 72 char
    so u have to copy D022S Structure  to ZD022S Structure and
    and define  like  LINE  CHAR(data type)  1500(length)
    then u define internal table like
    data: begin of itab occurs 0.
            include structure  Zd022s.
    data: end of itab.

Maybe you are looking for