Quantcast
Channel: Adobe Community : Popular Discussions - Archived Discussions
Viewing all articles
Browse latest Browse all 21156

Execute .bat file with AIR 2.

$
0
0

Hi!

 

I'm trying to execute a .bat file with AIR 2 to do some SVN function with subversion installed on my Windows XP machine. I know it's impossible directly so I use cmd.exe and i pass params to the .bat but the only trace I have is :

Microsoft Windows XP [version 5.1.2600]

(C) Copyright 1985-2001 Microsoft Corp.



C:\Program Files\Adobe\Adobe Flash Builder 4>

Here is my very simple .bat file :

svn.exe checkout --username "%1" --password "%2" "%3" "%4"

And here is my MXML code :

<?xml version="1.0" encoding="utf-8"?><s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"                             xmlns:s="library://ns.adobe.com/flex/spark"                             xmlns:mx="library://ns.adobe.com/flex/mx"                            applicationComplete="windowedapplication1_applicationCompleteHandler(event)"                            >     <fx:Declarations>          <!-- Placer ici les éléments non visuels (services et objets de valeur, par exemple). -->     </fx:Declarations>          <fx:Script>          <![CDATA[               import flash.desktop.NativeProcess;                              import mx.events.FlexEvent;                              private var process:NativeProcess;               protected function windowedapplication1_applicationCompleteHandler(event:FlexEvent):void               {                    var cmd:File = new File("C:\\WINDOWS\\system32\\cmd.exe);                    var svn:File = new File(File.applicationDirectory.nativePath + File.separator + svn.bat);                                        var args:Vector.<String> = new Vector.<String>();                    args[0] = toto;                    args[0] = svn.nativePath;                    args[1] = my_login;                    args[2] = my_pass;                    args[3] = svn_url;                    args[4] = E:\\workspace\\test_svn;                                                            var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();                                        nativeProcessStartupInfo.executable = cmd;                    nativeProcessStartupInfo.arguments = args;                                        process = new NativeProcess();                    process.addEventListener(NativeProcessExitEvent.EXIT, onExit);                    process.addEventListener(Event.STANDARD_ERROR_CLOSE, standardErrorClose);                    process.addEventListener(ProgressEvent.STANDARD_ERROR_DATA, onErrorData);                    process.addEventListener(IOErrorEvent.STANDARD_ERROR_IO_ERROR, onIOError);                    process.addEventListener(Event.STANDARD_INPUT_CLOSE, standardInputClose);                    process.addEventListener(IOErrorEvent.STANDARD_INPUT_IO_ERROR, onIOError);                    process.addEventListener(ProgressEvent.STANDARD_INPUT_PROGRESS, standardInputProgress);                    process.addEventListener(Event.STANDARD_OUTPUT_CLOSE, standardOutpoutClose);                    process.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, onOutputData);                    process.addEventListener(IOErrorEvent.STANDARD_OUTPUT_IO_ERROR, onIOError);                                        process.start(nativeProcessStartupInfo);               }                              public function standardOutpoutClose(evt:Event):void               {                    trace(standardOutpoutClose);               }                              public function standardInputProgress(evt:ProgressEvent):void               {                    trace(standardInputProgress);               }                              public function standardInputClose(event:Event):void               {                    trace(standardInputClose);               }                              public function standardErrorClose(event:Event):void               {                    trace(standardErrorClose);               }                              public function onOutputData(event:ProgressEvent):void               {                    trace(Got: , process.standardOutput.readUTFBytes(process.standardOutput.bytesAvailable));                }                              public function onErrorData(event:ProgressEvent):void               {                    trace(ERROR -, process.standardError.readUTFBytes(process.standardError.bytesAvailable));                }                              public function onExit(event:NativeProcessExitEvent):void               {                    trace(Process exited with ", event.exitCode);               }                              public function onIOError(event:IOErrorEvent):void               {                    trace(event.toString());               }          ]]>     </fx:Script>     </s:WindowedApplication>

 

What is wrong with this code?

 

Thx for your help.


Viewing all articles
Browse latest Browse all 21156

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>