我的共享包中有一个类,其中有这个 ByteArrayOutputStream 但仍然遇到这个异常。
知道原因是什么以及解决方案吗
No source code is available for type java.io.ByteArrayOutputStream; did you forget to inherit a required module
我的 xml 类
<!-- Specify the paths for translatable code -->
<source path='client'/>
<source path='shared'/>
谢谢
请您参考如下方法:
您可能正在尝试在 GWT 客户端上使用 java.io.ByteArrayOutputStream
,它会被编译成 JavaScript。因此,仅支持 Java 类的子集在客户端使用。
要查看客户端支持哪些类,请参见此处:http://www.gwtproject.org/doc/latest/RefJreEmulation.html