Thread Rambo: JAVA Aufruf in Perl (11 answers)
Opened by Rambo at 2003-09-18 12:59

Rambo
 2003-09-18 12:59
#53633 #53633
User since
2003-08-14
803 Artikel
BenutzerIn

user image
Hallo,
ich habe eine BAT Datei die ein JAVA Programm startet:
Code: (dl )
1
2
3
4
5
6
7
8
9
rem ==================
rem JAR file pathes
rem ==================
set CLASSPATH=%PICTURES_HOME%\classes;
set CLASSPATH=%PICTURES_HOME%\lib\appfw.jar;
set CLASSPATH=%CLASSPATH%%PICTURES_HOME%\lib\pixx.jar;
set CLASSPATH=%CLASSPATH%%PICTURES_HOME%\lib\pixxclient.jar;

"%JAVA_HOME%\java" -cp %CLASSPATH% com.lsy.pixx.PixxClient

dies möchte ich zwecks Erweitung in ein Perlscript machen

kann mir jemand sagen wie ich das machen muss.

Hintergrund ist das ich das Script Zeitgesteutert und X mal
aufrufen möchte. Das ganze soll zum schluss eine Client
Simulation werden die X mal den Server anfragt

bis her hab ich folgendes
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$jre_path = "D:\\WIN32APP\\JAVA_141_01";
$pixx_path = "F:\\PIXX_TOOLS\\IA_TEST\\1.5.1.00.27";
$appexecutable = $jre_path . "\\BIN\\JAVA.EXE";
@wks_name = qw(R1
              R2
              R3);


for $wks_name (@wks_name) {
        $appparameters = $appexecutable . ' -cp ' .
                         $pix_path . ';'.
                         $pix_path . '\\CLASSES;'.
                         $pix_path . '\\ETC;'.
                         $pix_path . '\\CONFIG;'.
                         $pix_path . '\\LIB\\servertester\\loggingpatch;'.
                         $pix_path . '\\LIB\\servertester\\servertester.jar' .';'.
                         $pix_path . '\\LIB\\appfw.jar' .';'.
                         $pix_path . '\\LIB\\pixx.jar' .';'.
                         $pix_path . '\\LIB\\pixxclient.jar' . ';'.
                         $pix_path . '\\LIB\\pixxcsresources.jar' . ';'.
                         $pix_path . '\\LIB\\orbix2000.jar'. ';'.
         ' com.lsy.pixx.server.test.Tester $wks_name servertester\\tester.cfg';
                         }


danke schon mal
gruß remo

View full thread Rambo: JAVA Aufruf in Perl