Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. burnettben

    Runtime.exec(a.exe) ... never this easy...

    I discovered that it dodn't run in a normal dos window. was missing a dll (ran in cygwin window). Ended up calling it by using exec(a.exe); Simple....
  2. burnettben

    Runtime.exec(a.exe) ... never this easy...

    If i use cmd /c start a.exe a windows cmd window opens up but i can't execute anything in there. Could this be a permissions thing? Does my executing java program required more permissions?
  3. burnettben

    Runtime.exec(a.exe) ... never this easy...

    i do a Process.waitFor(); after the streams are set up to read the program response. I tried using cmd/ c a.exe but it fails also.
  4. burnettben

    Runtime.exec(a.exe) ... never this easy...

    Hi, I am trying to run a C program from within a java program. However it always seems to not run. I have tried redirecting the output via streams to a file and various other suggestions made on this forum eg absolute path, using array to pass in executable but it appears to be finding the...
  5. burnettben

    Shared Memory and Pointers to structs

    I have allocated a piece of shared memory in a parent process and then forked to spawn 1 .. n children processes. I have 2 structs, one is a linked list which consists of a pointer to next and a pointer to the other struct (a player) which consists of a char array (name), and some other details...
  6. burnettben

    Variable assignment doing weird things!!

    Well don't i fell like a fool!!!!!http://www.tipmaster.com/images/sadeyes.gif Thanks man.....
  7. burnettben

    Variable assignment doing weird things!!

    I am trying to assign a variable the value of a field. I tried to use: awk 'BEGIN{name="";} { print $3; name=$3; print $name; }' file but what it outputs is the correct field for first print ($3) but then when i assign and then print it assigns...

Part and Inventory Search

Back
Top