Java Support

Java objects can be created and accessed in DSQL.

Creating objects

Objects can be created with the new operator:

$file = new java.io.File("myfile");

Invoking methods

if( $file.isFile("myfile") )
  println "File $file exists";