本文介绍了java.awt。*不被GAE支持?如何解决这个问题?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);

在app引擎中,我发现它不起作用,它表示java。 awt.image.bufferedImage不被GAE支持,并且java.awt。*,javax.imageio.ImageWriter也不被GAE支持。那么有人可以告诉我如何在GAE中实现这些功能吗?

>用于图像处理任务的 。
对于Google App Engine上的文件系统模拟,请查看 GAE VFS a>



简而言之,您尝试实现目标的方式与App Engine的设计不一致。


BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);

in app engine , i found it doesn't work, it said that java.awt.image.bufferedImage is not supported by GAE.and java.awt.*, javax.imageio.ImageWriter also are not suppoted by GAE. so can someone tell me how to implement those functions in GAE?

解决方案

The Google App Engine has a great built-in Images API for image processing tasks.For filesystem emulation on the Google App Engine, have a look at GAE VFS

In short, the way you are trying to accomplish your goal is inconsistent with the design of the App Engine.

这篇关于java.awt。*不被GAE支持?如何解决这个问题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 15:52