简体   繁体   中英

Secure server-side output from a client-side app

I converted a local application to a Java applet for data security 1 but I cannot figure out how to output information to a file. I am inputting files by a URL object but do not know how to output data to a file on the server.

  1. secure in that the person running the program in supervised conditions cannot keep it and run it for someone else (it is a survey I am piloting).

Is there an easy way to do this?

Applets run on the client, not on the server, so an applet can't do this, period. What it can do is send data to a service of some kind on your server, which can then turn around and write the data to a file.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM