|
Re: jsp calling dos shell
|
Posted: Mar 4, 2002 12:30 AM
|
|
You may be thinking of Runtime.exec(), which allows you to exec a process. The JSP you are looking at right now does this to run a server side include program (C++) the generates the HTML for the banner ad in the upper right corner. But it sounds more like you need to put the class you are trying to refer to in the right directory so it can be found by your app server. Then you can just access it from your JSP. How that works depends on your app server, so I'd consult its documentation.
|
|