我正在使用jboss应用程序服务器来部署包含处理代码的应用程序。
我的目录结构如下所示
MYAPP-战争1.0.0.war \ JS \ processing.js
MYAPP-战争1.0.0.war \ IMG \ bird.png
MyApp的入耳式1.0.0 \ MyApp的战-1.0.0.war \鸟类\ bird.html
如何从bird.html参考图像bird.png
<script>
PImage img;
img = loadImage("img\bird.png");
// The above code doesn't seem to work, but If I use an absolute path to a file in the file system, the processing IDE is able to pick it up.
image(img, 10, 10);
...
我应该如何在以EAR格式打包的Java EE应用程序中以相对的方式查找此文件。
答案 0 :(得分:1)
您可以通过查看以下输出来尝试解决此问题:
var jsCode = Processing.compile(txt).sourceCode;
alert(jsCode);
其中txt是处理脚本代码!