Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
I have a .exe file on my server which I want to call and run on a clients machine through a servlet. I am able to call a normal .exe file thru this but when I run my actual .exe file which is dependent on some .dll files it gives me error that .dll file not found. I have even tried usinng the Runtime class but then the file opens on the server side only Below is my coding: import java.io.*; public class filedownload extends HttpServlet File F = new File(pathOfFile); //the next statement is the most IMPORTANT statement ServletOutputStream out = sRes.getOutputStream(); { finally Replies:
|
Sponsored Links
|