Click here to Skip to main content
15,887,923 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have used this code in one of the jsp in server
Java
Process process = new ProcessBuilder("explorer.exe",folderpath).start();

Now i am accessing that application in client side.
Now the problem is when i am clicking the button folder is opening in server,
but i want to open this folder in client side..

Could you help regarding this...
Posted
Updated 27-Jul-12 0:14am
v2
Comments
TorstenH. 27-Jul-12 6:44am    
what folderpath are you using? is that one pointing to the server?

1 solution

you don't seem to understand how the internet works. Your server and your client are two different things. Code written on your server, runs on your server. You can't open a server or a client folder, on the client side, using HTML, which is all your jsp generates.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900