如何通过Java applet 将图像文件保存到服务器上?

发布于 2024-07-11 18:07:51 字数 75 浏览 6 评论 0原文

我有一个作为 Java 小程序运行的绘图应用程序。 我需要以任何图像格式(通常是 PNG)将画布内容保存在服务器计算机上。 请帮忙!

I have a paint application that runs as a Java applet. I need to save the contents of the canvas on server machine in any image-format typically PNG. Please help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别靠近我心 2024-07-18 18:07:51

您需要做两件事:

  1. 在小程序中生成 PNG 图像文件 - 写入/保存图像
  2. 将图像文件发布到某个将存储图像的服务器端 CGI/servlet - 如何将文件上传到我的 servlet 或 JSP?

您在服务器上运行什么? PHP? 铁轨? JSP? 。网?

You need to do two things:

  1. Generate an PNG image file in your applet - Writing/Saving an Image
  2. Post the image file to some server-side CGI/servlet which will store the image - How do I upload a file to my servlet or JSP?

What are you running on the server? PHP? Rails? JSP? .NET?

知你几分 2024-07-18 18:07:51

您可能对我为Processing 编写的代码感兴趣,它基本上是Java 代码。
回复:保存到网页 --- 图片导出。 在该线程的前面,我解释了此类应用程序要采取的一些预防措施(以避免恶意用户淹没服务器),并给出了相应的 PHP 代码。

You might be interested by the code I wrote for Processing, which is basically Java code.
Re: save to web --- image export. Earlier in the thread I explain some precautions to be taken with such application (to avoid flooding a server from a malicious user) and I give the corresponding PHP code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文