• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Runtime.exec(unix command)

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i've a problem tryin to run exec on a jsp, i tryed using java files and jsp and both doesnt work. the source its!
mport java.io.*;
public class exec
{
public static void main(String[]argv)
{
try
{
Runtime rt = Runtime.getRuntime();
Process prcess = rt.exec("/bin/sh","-c","/APPS/webcust/car/docs/me/apis/charlie.sh");
}
catch (Exception e){}
}
}
any idea about whats the problem or sugestion to execute the same on a simple JSP file?
thanks
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What does this script do? What error are you getting?
If the script outputs anything, you need to explicitly handle the output.
 
Ernst Sternmann
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
the sh file its just a test, it creates a txt file with the date, thats all, but its the first step before the real one (execute a c program, who execute various programs and updates on 4 db's, etc).
i dont recipe any error msg, just the sime HTTP 500 Internal Server Error
The page cannot be displayed
thanks
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm somewhat puzzled that the source you show is definately not a JSP - it's just a regular Java command-line class. If you are expecting a server to execute this file you are likely to be disappointed.
Do you have any other working jsp files to look at?
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Thats just super - you throw away the anquished cries of the Java Runtime as it attempts to communicate with you.
 
Jeanne Boyarsky
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ernst,
It creates a text file and puts it where?
 
I'm gonna teach you a lesson! Start by looking at this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic