Java HTTP Post Applet 服务器 - 内部生成图像
我在小程序中使用 J2D 创建了 BufferedImage。 我想使用 HTTP Post @ http://localhost:3001/upload/file 上传此 BufferedImage。
编辑:我有一个 ROR 服务器处理服务器端的事情,我正在寻找客户端的 Java 代码。
我能找到的所有示例都涉及上传文件。
有人知道如何上传 BufferedImage 吗?
干杯,
槽型
I have a BufferedImage created using J2D in an applet.
I want to upload this BufferedImage using HTTP Post @ http://localhost:3001/upload/file.
EDIT: I have a ROR server handling the serverside of things, I am looking for the Java code for the client.
All the examples I can find involve uploading Files.
Anybody know how to upload a BufferedImage?
Cheers,
slotishtype
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,下面是创建 bufferedimage 的代码,将其编码为 Base64 字符串,然后使用 apache commons 库通过 http 将字符串发布到 ROR 服务器。
ROR 服务器只是获取字符串,对其进行解码并将其保存到硬盘......
结束
感谢大家的帮助,
slotishtype
OK, So here is the code that creates the bufferedimage, encodes it as a Base64 string and then using the apache commons library posts the string over http to a ROR Server.
The ROR server simply takes the string, decodes it and saves it to the harddrive....
end
Thanks for the help guys,
slotishtype