Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / January 2006

Tip: Looking for answers? Try searching our database.

Runtime.exec on Win98: stdin, stdout with long DOS command line?

Thread view: 
Bernard - 27 Dec 2005 02:55 GMT
Hi all Java Gurus

I can't get Runtime.exec() to work with DOS commands longer than 127
characters (the command.com limit) under Win98 2nd edition.

I use a workaround, start.exe to execute my DOS command. This executes
command lines successfully that are longer than 127 characters.

However, with start.exe, stdin and stdout of my executed command do
not appear to be accessible at all from the Java Process object.

Whatever I write to Process.getOutputStream() gets ignored, typically
with the effect of the DOS program hanging while it waits for input.

If I don't need to write to Process.getOutputStream(), then still
whatever I read from Process.getInputStream() is empty.

This is all Win9x specific, because on NT, Win2000 and XP systems,
there is no such command line length limitation, and therefore there
is no need for the start.exe workaround.

I use separate threads for reading stdin and stderr much like as
documented at
http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps_p.html
so I am not a beginner in the use of Runtime.exec().

It appears to me that my issue is not yet documented anywhere on the
web. It would be nice to have a simple solution. As long as there is
none, my recommendation would be to avoid Runtime.exec on Win9*
platforms wherever stdin, stdout and stderr must be used, because it
would be dangerous to ignore the 127 character command line length
limit of command.com.

Any suggestions are highly appreciated.

Bernard

Note: I use the GNUPG encryption program that has a mode that uses
stdin and stdout for data:
start /m /w C:\g\gpg.exe --batch --homedir \tmp\sender --always-trust
--armor --encrypt --recipient 1AE899CCDAD5F9A984A9747708378A798F388655
C:\WINDOWS\TEMP\tmp3831.tmp
exitCode = 0

The above example does not even use stdin, it uses a file as input. If
you want to use stdin, then remove the parameter for the input file
e.g. 'C:\WINDOWS\TEMP\tmp3831.tmp'.
Raymond DeCampo - 01 Jan 2006 01:40 GMT
> Hi all Java Gurus
>
[quoted text clipped - 30 lines]
>
> Any suggestions are highly appreciated.

1) You could try writing out your command to a temporary BAT file, and
then simply execute the BAT file via Runtime.exec().  I think that the
streams will be preserved in that case, but you may need to experiment.

2) Have you tried using Runtime.exec(String[]) (instead of
Runtime.exec(String))?

HTH,
Ray

Signature

XML is the programmer's duct tape.

Bernard - 03 Jan 2006 07:08 GMT
Raymond and Roedy,

Thanks for your suggestions.

Runtime.exec(String[]) (instead of Runtime.exec(String)) as you
suggested removes the command.com 127 char limit!

I had already used it but I did not realise that my 127 char
limitation was from prior experience with Runtime.exec(String)) which
cannot be applied here.

Still the process hangs even without start.exe but that might be
caused by gpg.exe. It almost appears that it cannot detect the closing
of stdin as in the command

gpg.exe --batch --homedir \tmp\sender --always-trust
--armor --encrypt --recipient 1AE899CCDAD5F9A984A9747708378A798F388655

Regards

Bernard

>> Hi all Java Gurus
>>
[quoted text clipped - 40 lines]
>HTH,
>Ray
Raymond DeCampo - 03 Jan 2006 14:33 GMT
> Raymond and Roedy,
>
[quoted text clipped - 13 lines]
> gpg.exe --batch --homedir \tmp\sender --always-trust
> --armor --encrypt --recipient 1AE899CCDAD5F9A984A9747708378A798F388655

Have you explicitly closed the input stream to gpg.exe and are you
reading from both the stdout and stderr streams?

HTH,
Ray

Signature

XML is the programmer's duct tape.

Roedy Green - 02 Jan 2006 16:23 GMT
>would be dangerous to ignore the 127 character command line length
>limit of command.com.

don't use command.com.  Try 4DOS which has a slightly longer limit,
IIRC. See http://mindprod.com/jgloss/fordos.html

DOS itself has uses a fixed size, fixed format command block to
communicate with *.com files. There is no room to expand the command
line. What you can do if you have control over the DOS app is put data
into set environment variables.

Signature

Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.



Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.