Language

The Free and Open Productivity Suite
Released: Apache OpenOffice 4.1.15

Writing Scripts in BeanShell, JavaScript and Java

Contents

Hello World in BeanShell

Here's a BeanShell script that inserts Hello World at the start of an OpenOffice Writer document:

    import com.sun.star.frame.XModel;
    import com.sun.star.text.*;
    import com.sun.star.uno.UnoRuntime;
    import drafts.com.sun.star.script.provider.XScriptContext;

    model = context.getDocument();
    textdoc = (XTextDocument)
        UnoRuntime.queryInterface(XTextDocument.class, model);

    oText = textdoc.getText();
    oCursor = oText.createTextCursor();
    oText.insertString(oCursor, "Hello World", false)
Top

Trying out your BeanShell script

Trying out your Hello World BeanShell script is easy:

If you are new to the OpenOffice API this is a great way to experiment with it.

When you are happy with your BeanShell script, you can create a Script Parcel which can be deployed to OpenOffice installations or documents for use by others. This can be done using NetBeans or from the command line.

Top

Hello World in JavaScript

Here's a JavaScript script that inserts Hello World at the start of an OpenOffice Writer document:

    importClass(Packages.com.sun.star.uno.UnoRuntime);
    importClass(Packages.com.sun.star.text.XTextDocument);

    var oModel = XSCRIPTCONTEXT.getDocument();
    var oTextdoc = UnoRuntime.queryInterface(XTextDocument, oModel);
    var oText = oTextdoc.getText();
    var oCursor = oText.createTextCursor();

    oText.insertString(oCursor, "Hello World", false);

The XSCRIPTCONTEXT variable above is a global instance of the XScriptContext type which is available to all JavaScript scripts executed by the Scripting Framework. See Writing OpenOffice Scripts and the XScriptContext type for the methods available for the XScriptContext type.

Top

Trying out a JavaScript script in OpenOffice

Once again you can use the Edit/Debug Scripts dialog to open a JavaScript script in an editor. The Rhino JavaScript Editor from the Mozilla Rhino project can be used to debug and test your JavaScript scripts.

The Rhino Debugger also includes debugging functionality, so you can set breakpoints in your JavaScript script and step through the code as it is executed.

Top

Hello World in Java

Here's the Hello World script in Java:

    import com.sun.star.frame.XModel;
    import com.sun.star.text.*;
    import com.sun.star.uno.UnoRuntime;
    import drafts.com.sun.star.script.provider.XScriptContext;

    public class MyClass {

        // The script method must be public
        // It can either be static or non-static

        public void showForm(XScriptContext xSc) {

            // getting the text document object
            XModel xmodel = xSc.getDocument();

            XTextDocument xtextdoc = (XTextDocument)
                UnoRuntime.queryInterface(XTextDocument.class, xmodel);
            XText xtext = xtextdoc.getText();
            XTextCursor xtextcursor = xtext.createTextCursor();

            xtext.insertString(xtextcursor, "Hello World", false);
        }
    }

OpenOffice scripts in Java need to be compiled in order to execute them. See the Developing Scripts in NetBeans and Developing Scripts on the command line guides for instructions on how to compile and deploy OpenOffice scripts in Java.

Top

Writing OpenOffice scripts and the XScriptContext type

The XScriptContext type is used to obtain the the document context, desktop and component factory from an OpenOffice script. Any public Java method which accepts XScriptContext as it's first parameter can be executed as an OpenOffice script. For BeanShell scripts, an instance of XScriptContext is available in a global variable called "context" which can be used by the script.

The following accessor methods are available on the XScriptContext type:

The Java or BeanShell script must import the XScriptContext interface, using the following import directive:
    import drafts.com.sun.star.script.provider.XScriptContext;

Top

Tips on writing OpenOffice scripts

Top

Parcel Descriptor DTD and sample XML

Each Script Parcel must contain a parcel-descriptor.xml file which provides all the necessary metadata for the script. The DTD for the parcel-descriptor.xml follows:
<?xml version="1.0" encoding="UTF-8"?>
<!-- DTD for Parcel Meta data for use in the OpenOffice Scripting Framework Project -->

<!ELEMENT description (#PCDATA)>
<!ELEMENT displayname EMPTY>
<!ELEMENT functionname EMPTY>
<!ELEMENT prop EMPTY>
<!ELEMENT languagedepprops (prop+)>
<!ELEMENT script (description, displayname, functionname, languagedepprops*)>
<!ELEMENT parcel (script+)>
<!ATTLIST displayname
	value CDATA #REQUIRED
>
<!ATTLIST locale
	lang CDATA #REQUIRED
>
<!ATTLIST functionname
	value CDATA #REQUIRED
>
<!ATTLIST prop
	name CDATA #REQUIRED
	value CDATA #REQUIRED
>
<!ATTLIST script
	language CDATA #REQUIRED
>
<!ATTLIST parcel
	language CDATA #REQUIRED
>

The following is an example of a parcel-descriptor.xml file that defines a script, implemented in Java. The languagedepprops element is used to extend the JVM's classpath.

<?xml version="1.0" encoding="UTF-8"?>
<!--Sample Meta Data for use with the Scripting Framework Project in OpenOffice -->
<!DOCTYPE parcel SYSTEM "parcel.dtd">

<parcel language="Java">
	<script language="Java">
		<displayname value="Memory.usage"/>
		<description>
			Displays the memory current memory usage
		</description>
		<functionname value="memoryUtils.memoryUsage"/>
		<languagedepprops>
			<prop name="classpath" value="/opt/foo.jar:/usr/java/src.jar"/>
		</languagedepprops>
	</script>
</parcel>
Top

Apache Software Foundation

Copyright & License | Privacy | Contact Us | Donate | Thanks

Apache, OpenOffice, OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. The Apache feather logo is a trademark of The Apache Software Foundation. Other names appearing on the site may be trademarks of their respective owners.