0

I am working on a JSP project that requires system Level privileges for example I want to achieve serial Port communication without any third party API and the Methods or the Interface that Is Used For Communication Is Placed Centrally On The Server ..

Is It Possible To Achieve The Above Using JAVA only .....?

I also Know That Java Has A Sandbox Which restricts its access and A resource That could Help Is JAVA SCRIPT .... Is There A Work around Or Any Suggestion That could be used TO achieve The Same Using JAva Only...

Thanks In Advance For your Time and Effort ...

1
  • You are confusing code which runs on a server (e.g. JSPs) with code that runs on a client (e.g. Applets). Commented Apr 22, 2013 at 8:53

1 Answer 1

1

JSP is running on the server, so there is no way to access the client's file system.

If your client needs to send files to the server, you can use <input type="file"> in HTML forms on your JSP pages.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.