Calling an exe but exe isnt generating files

Hi
I basically have a JButton that when pressed calls a java class that has a method to call an .exe.
When the exe is called it is supposed to take a path name for a video and split the video into image files.
The method is as follows:
        String commandArgs = "C:\\Test1 " + "C:\\video.mpg";
        try
            Runtime rt = Runtime.getRuntime();
            Process p = rt.exec(commandArgs);
            int exitVal = p.waitFor();
            System.out.println("Exit value = " + exitVal);
        catch (Throwable t)
               System.out.println("Error thrown in method decodeMpeg()");
          }When I run this through NetBeans it says that it has run the exe but no files are generated.
If I just put this method into a java file, javac it and run it in a console window it works fine.
Does anyone know why I cant generate files through the NetBeans IDE?
Im really stumped so any help would be great.
Thanks

Ok it was just a stupid thing that one of my friends pointed out. I had been looking for the files to be generated in the same location as the .exe
Im very new to using NetBeans and didnt know that it actually outputs the files to the project file.

Similar Messages

  • Calling an external program (*.exe file) on the client

    Hi,
    I use 9iDS and I'd like to call an external program (*.exe file) on the client, but this exe file is located on the server not on the client.
    So it should be something like a mixture between host and client_host(webutil) command. Is it possible to use client_host where a virtual path is passed to?
    Regards Sören

    Are you saying you want to run on the exe on the client but its located on the server???
    In that case you would have to do a webutil file transfer to move it to the client before executing. Or, if you are calling a DLL, webutil will download it automatically from the server to the client (see the C API example on the webutil page).
    Regards
    Grant Ronald
    Forms Product Management

  • When I try to read a PDF file, the window opens and then disappears after a second or two. This began after the last Adobe update. I tried accepting the Adobe terms using Eula.exe but that disn't solve the problem. What do I do?

    I can no longer read PDF files. The window opens and then disappears after a second or two. This began after the last Adobe update. I tried accepting the Adobe terms using Eula.exe but that disn't solve the problem. What do I do?

    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].

  • How Do I Execute An exe or an msi Install file From a Button in Flash Movie

    Issue:
    I have a flash movie that runs as a standalone player on a
    Demo CD... I also have an install msi file(same as an exe) that
    when the user is done viewing the flash movie they can click on a
    menu button in the flash movie that executes the msi or exe located
    on the root of the CD which starts the install process.
    Question: What is the action script (FOR FLASH 8) that i
    apply to the button that will initiate or call the MSI or exe
    install file.
    Anyhelp would be great... even a link to an example... or
    anything... thanks
    Thanks in advance...

    fscommand("exec","myexe.exe");
    Should run the program myexe.exe inside a directory called
    fscommand
    which must be a subdirectory of whereever your projector is
    located.
    In windows:I know you can run .bat files with fscommand. But
    I'm not sure about msi files.
    You can often get around the limitations by having a .bat
    file that will a) show a cmd window briefly and b) do the thing
    that you couldn't do from flash.
    If running the msi doesn't work from flash directly you may
    want to try using a bat file...
    There's some information here.
    http://livedocs.adobe.com/flash/9.0/main/00001177.html#wp143348

  • Cannot overcome Exchange Server 2013 Install Error - "There was an error while running 'ldifde.exe' to import the schema file

    Hello,
    I am attempting to install Exchange 2013 on to a 2008R2 Server on a domain running 2008R2 DC's.  I have worked every error resolution I can find, but I can't get past this error.
    Error:
    The following error was generated when "$error.Clear();
    install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema27.ldf")
    " was run: "There was an error while running 'ldifde.exe' to import the schema file 'C:\Windows\Temp\ExchangeSetup\Setup\Data\schema27.ldf'. The error code is: 8224.
    Any assistance is appreciated.

    Are you running the installation from an ISO-file?
    If so, then copy the files (preferably
    Exchange 2013 w. SP1) to the local disk
    and run the install with elevated privileges.
    Martina Miskovic

  • Please provide Zip File of latest version instead of exe as exe is not allowed in our company

    Please provide Zip File of latest version instead of exe as exe is not allowed in our company
    We can only download ZIP or RAR EXE not allowed

    Unfortunately the official releases of Firefox aren't available as Zip-archive builds.
    Luckily a Firefox build called 'Nightly' is and it's very similar to Firefox.
    You can find the built here {''removed Nightly link''}..
    Edit: Oops, I should be careful copying answers from certain websites.
    I didn't really look at what Nightly really was.
    But I will avoid suggesting Nightly in future answers.
    ''edited by a moderator''

  • Customized Seeded report to XMLP report but its not generating output file?

    I want to customize "Dunning Letter Print from Dunning Letter Generate" Report, which is called from "Dunning Letter Generate" Report
    Steps i followed to Customize reports are.
    1. Changed output format to xml for "Dunning Letter Print from Dunning Letter Generate" Report.
    2. Ran report to generate xml data and using xml data created RTF file
    3. Registered data definition and template with code and short name same which is ARDLP_NON_SRS
    Now while i am running report its completing normal, but its not generating output file giving Error like –
    "Unable to find Published Output for this request"
    “No Output File Exist for Request No - xxxxx”
    No Idea why its not picking template, Can anyone help me in this?
    Using:
    Oracle Applications : 10.0.5.2,
    MS Word 2007
    Thanks,

    I am not giving the solution, providing you a hint..
    This is the query you need to satisfy,
    SELECT NVL(R.DESCRIPTION ,CP.USER_CONCURRENT_PROGRAM_NAME)
    FROM FND_CONCURRENT_REQUESTS R, FND_CONCURRENT_PROGRAMS_VL CP,XDO_DS_DEFINITIONS_B XDS
    WHERE ( ( FND_PROFILE.VALUE('CONC_REPORT_ACCESS_LEVEL') = 'U'
    AND R.REQUESTED_BY = :$PROFILES$.USER_ID ) or
    ( FND_PROFILE.VALUE('CONC_REPORT_ACCESS_LEVEL') = 'R'
    AND R.RESPONSIBILITY_ID = :$PROFILES$.RESP_ID ) )
    AND R.PROGRAM_APPLICATION_ID = CP.APPLICATION_ID
    AND R.CONCURRENT_PROGRAM_ID = CP.CONCURRENT_PROGRAM_ID
    AND XDS.APPLICATION_SHORT_NAME=
    ( SELECT APPLICATION_SHORT_NAME
    FROM FND_APPLICATION
    WHERE APPLICATION_ID=CP.APPLICATION_ID)
    AND XDS.DATA_SOURCE_CODE = CP.CONCURRENT_PROGRAM_NAME
    AND R.OUTPUT_FILE_TYPE='XML'
    AND R.STATUS_CODE not in ('E', 'D', 'T', 'X')
    ORDER BY R.REQUEST_ID DESC
    Go to system profiles and query for 'Concurrent:Report Access Level', responsibility you need and modify the profile name accordingly....

  • Error while running 'ldifde.exe' to import the schema file

    Hello,
    I'm doing a practical in exchange server. I have two servers, First one is the domain controller it's a Server 2012 R2 and the Second one is the server planing to install exchange 2010. it has server 2008 R2. My issue is when i'm trying to setup Exchange
    Server 2010 it comes error while installing "error while running 'ldifde.exe' to import the schema file" I tried to fix but i couldn't. Please if anyone know about this error give me a solution. 
    Regards.
    Ashane Deshapriya ( MCP )

    Can you run these commands from an elevated powershell and try to install exchange. 
    Import-Module ServerManager
    Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy -Restart
    If that also fails please post the error.
    Thanks, MAS
    Please mark as helpful if you find my comment helpful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

  • How to use runtime.exe to activate the native file coping commands

    How to use runtime.exe to activate the native file coping commands.(It might include using process(), and such.. but how?

    Why would you want to do this? It's harder than copying the file in Java (by reading the file and writing it to a new file) and you'll need to write new code each time you want to port your code to a new OS.

  • How do I turn off background ni file activity when not using Labview? files such as nimxs.exe, nipalsm.exe, nipalsm.exe, nisvcloc.exe, nicitdl5.exe

    How do I turn off background ni file activity when not using Labview? I use labview rarely, and I also use my computer for demanding multimedia applications, including multitrack digital audio recording. I need to reduce as much background activity as possible, and taking a look with task manager I see files such as nimxs.exe, nipalsm.exe, nipalsm.exe, nisvcloc.exe, and nicitdl5.exe running even when I haven't used Labview (8 I believe). These files run even after I right click the NI icon on the lower right and turn off the application. I would like the computer to boot up without these files, and for the necessary files to be activated only when I start the program.
    Can this be done or do I have to remove labview from the system to improve performance?
    Thanks

    Hello, those processes are part of running NI services that start when Windows boots.  These processes serve varied purposes and stopping them can have undefined and unknown consiquences for your NI products.  These products run at "normal" priority meaning that they should be preempted by any process running at a higher priority which I would expect your other application to be doing given their time sensitivity.  That being said, in Windows XP (I can't speak for other OSes), you can lower their priorities even greater through task manager (right click the process»set priority) to further remove them from contention for resources.  If you want to prevent them from running you can set the service startup type to "manual" in Control Panel»Administrative Tools»Services.  Right click the process go to Properties and Under the General tab choose Startup Type»Manual.  This will start up the processes only when something directly starts it up.  LabVIEW will start these processes up as it attempts to use them.  When you shut down LabVIEW you will need to manually shut down these processes through task manager.  Again, doing this can cause problems with your NI products on your system and it is not advised.
    Travis M
    LabVIEW R&D
    National Instruments

  • Hello, I was trying to purchase an item in a game call 帝王三国! but it does worked first few times, but it isnt working anymore ! It tells me to contact apple store to purchase the item.

    Hello, I was trying to purchase an item in a game call 帝王三国! but it does worked first few times, but it isnt working anymore ! It tells me to contact apple store to purchase the item.

    Click here and request assistance.
    (91679)

  • When I click "about this mac" to check on my storage, I get a number of different sections music, movies, etc. but also I get a section called backups, where can I find the files in this section?

    When I click "about this mac" to check on my storage, I get a number of different sections music, movies, etc. but also I get a section called backups, where can I find the files in this section?

    Welcome to Apple Support Communities
    All the storage in "Backups" is taken up by local snapshots, which are made automatically in all MacBooks, MacBooks Pro and MacBooks Air with OS X Lion or newer and Time Machine turned on.
    See > http://pondini.org/TM/30.html I recommend you to leave them there, because they will be removed automatically. However, if you want, you can disable or remove them manually if you want, even if there's no reason to do this. Have a look at the link above for more information

  • I generate file (PDF, HTML, etc) the report is empty but I run in paper

    Hi
    I use oracle Report10g
    When I generate file (PDF, HTML, etc) the report is empty but I run in paper design show data, the report in the paper design show many pages, when generate file show only the information of the margin in the main seccion and the body is empty,
    Thanks

    Thanks Daniel for pointing that out.  Though you answer is helpful but I am not sure if that is what I would want to do.
    The link you provide for csv says "For each report there's an _report.xdo file that contains the XML structure of the report... "   It suggests I modify the .xdo file for each report.  I currently have 16 reports.
    Does it mean I modify the .xdo file for all 16  and what happens if someone creates a 17th report ?
    Also, what if I run the same report using different input parameters will that change the xml structure for the report  and therefore will need me to modify the .xdo again ? (I think it should not change the xml structure so the answer should be "NO" to that, unless I change the structure of the report).
    Finally, the link you provide says after doing what it suggest  "Now log back into BI publisher and select the report. You should now be able to see that CSV is now an option."
    CSV should be an option where ? on what screen/page ?  Maybe PDF is already an option for me that I cant see because I do not know where that option is.
    I was hoping there would be something I could do on the xdo_metadata sheet (in the data constraints section or elsewhere) OR in BI Publisher itself as some property of the report.
    I will try out what you suggest any ways.
    M. Jamal

  • Call a external SWF by press the button within another SWF file but the second SWF file play Externely

    Hello Guyz.
    i am working on Macromedia Flash 8 and i just want to call a external SWF when i press the button within another SWF file.......but the second SWF file play Externely............can any one knows the code.... AS2

    try this
    http://www.actionscript.org/forums/showthread.php3?s=&threadid=28123

  • I downloaded the iCloud installer exe. but the installer does not run?

    I downloaded the iCloud installer exe. but the installer does not run?

    Hi,
    Please also try right-clicking on the installer and '''Run as administrator'''.
    [https://support.mozilla.org/en-US/kb/Installing%20Firefox%20on%20Windows Installation]

Maybe you are looking for

  • Outbound Order Confirmation - Output control for incomplete sales orders

    Hi EDI Folks, I have a simple question. I want to send EDI 855 for only the completed sales orders. Whenever inbound sales order is processed and if the order is incomplete. I don't want to send the order confirmation for the order at that point of t

  • Mapping input parameter

    Hello gurus ! I'm newbie on using OWB. How does the "Mapping input parameter" work ? If I place it on my mapping and afterwards I generate the mapping and run the mapping via Control Center Manager, The Control Center should ask me for value of the p

  • Help with Zen Ne

    Has anyone else's Neeon malfunctioned so that you can't add files to the player?It started out as a problem with the recording function, but then the player wouldn't recognize the files on it. I then removed all the files, and tried to retransfer the

  • How to block Ping requests in Solaris 10

    Hello all, Could you pls let me know how to block icmp packets (ping) on solaris 10. thanks a lot tpiranav

  • OUTBOUND DELIVERY  AND GOODS RECIPIENT

    Hi, I would like to know if it is possible to create an outbound delivery without having to specify the goods recipient before. In explanation:  I wonder if it is possible to fill the data required for the goods recipient in transaction VL01N and not