由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - java applet 能否写文件给网站?
相关主题
有没有办法阻止别人下载applet的.class文件?writeObject()的时候出现NotSerializableException是怎么回事?
问java applet的问题愣是笨到家----整不明白applet的path
Top Ten Errors Java Programmers Make(3)为什么我这个html找不到applet class?
Re: How to write to a file on server in an applet?如何传递secret key
a question regarding applet你们的应用是如何存储数据库密码的 (转载)
ObjectOutputStream.writeObject(Hashtable) ?如何把SHA1密码从新加密成SHA-512
赶快帮帮我!how do u store secrets?
再问个java的蠢问题,别骂我developer, programmer, software engieer有什么区别
相关话题的讨论汇总
话题: applet话题: 文件话题: java话题: socket话题: your
进入Java版参与讨论
1 (共1页)
b***i
发帖数: 3043
1
如果applet可以读文件,可否写入?
g*****g
发帖数: 34805
2
Applet runs locally on your machine, so no, you cannot do that directly.
But you can always have a server programm running on the hosting server
talking to your applet and let the sever program writes it.

【在 b***i 的大作中提到】
: 如果applet可以读文件,可否写入?
b***i
发帖数: 3043
3
原来是这样,有现成的方案没有,一般需要加密吧?

【在 g*****g 的大作中提到】
: Applet runs locally on your machine, so no, you cannot do that directly.
: But you can always have a server programm running on the hosting server
: talking to your applet and let the sever program writes it.

g*****g
发帖数: 34805
4
I don't know about your requirement. But simple socket writing
will work. Just open a socket and writeObject. You can consider
https webservice if you need encryption.

【在 b***i 的大作中提到】
: 原来是这样,有现成的方案没有,一般需要加密吧?
z****e
发帖数: 54598
5
可以,方法很多,java是网络语言,可以利用的工具实在太多

【在 b***i 的大作中提到】
: 如果applet可以读文件,可否写入?
1 (共1页)
进入Java版参与讨论
相关主题
developer, programmer, software engieer有什么区别a question regarding applet
请教一个系统设计的问题,有关WEB Service(PIC) ObjectOutputStream.writeObject(Hashtable) ?
请教一下JSP+SERVLET结构的进阶教材,多谢了赶快帮帮我!
请教高人!再问个java的蠢问题,别骂我
有没有办法阻止别人下载applet的.class文件?writeObject()的时候出现NotSerializableException是怎么回事?
问java applet的问题愣是笨到家----整不明白applet的path
Top Ten Errors Java Programmers Make(3)为什么我这个html找不到applet class?
Re: How to write to a file on server in an applet?如何传递secret key
相关话题的讨论汇总
话题: applet话题: 文件话题: java话题: socket话题: your