💾 Archived View for blitter.com › apl-books › APLX50 › APLX-manual › www.microapl.com › apl_help › c… captured on 2023-01-29 at 14:38:01.

View Raw

More Information

⬅️ Previous capture (2022-07-17)

-=-=-=-=-=-=-

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Interfacing to Java</TITLE>
<META NAME="DESCRIPTION" CONTENT="APL language help page: Interfacing to Java">
<META NAME="KEYWORDS" CONTENT="Java,apl,aplx,apl help">
<!-- %%COMMON_HEAD%% -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<LINK rel="stylesheet" type="text/css" href="http://www.microapl.com/styles_apl_help.css">
<!-- %%END%%-->
</HEAD>
<body>
<table>
<tr>
<td width="800" valign="top" colspan="2">
<center>Topic: <A HREF="ch.htm">APLX Help</A> : <A HREF="ch_070.htm">Interfacing to other languages</A> : <A HREF="ch_070_040.htm">Interfacing to Java</A>
</center>
<center>
[<A HREF="ch_070_050.htm">Next</A> | <A HREF="ch_070_030.htm">Previous</A> | <A HREF="ch.htm">Contents</A> | <A HREF="help_index.htm">Index</A>  | <A HREF="http://www.microapl.co.uk/apl/index.html">APL Home</A> ]</center>
<br></td>
</tr>
<tr>
<td width="120">
<a href="http://www.microapl.co.uk/apl/index.html"><img height="68" border="0" width="119" src="MicroAPL_logo.gif" alt="www.microapl.co.uk"></a>
</td>
<td align="left" valign="bottom">
<h1>Interfacing to Java</h1>
</td>
</tr>
<tr>
<td width="800" valign="top" colspan="2">
<hr>
<H2>Specifying a call to the Java environment</H2>
<p>You can interface to Java by supplying <tt>'java'</tt> as the environment string (left argument) for <A HREF="ch_020_070_505.htm"><code>&#9109;NEW</code></A>, <A HREF="ch_020_070_345.htm"><code>&#9109;GETCLASS</code></A>, or <A HREF="ch_020_070_095.htm"><code>&#9109;CALL</code></A>.  These system functions will allow you to create an instance of a Java class, or to call a Java static mathod.</p>

<H2>Setting Java options</H2>

<p>You can set various options for the Java virtual machine by using the system function <code>&#9109;SETUP</code>.  For example, you can specify a particular Java Virtual Machine should be used, and set the class library path.
<p>See the documentation on <A HREF="ch_020_070_685.htm"><code>&#9109;SETUP</code></A> for  details on controlling the Java environment.</p>

<H2>Conversion of Java data types to APL data</H2>

<p>APLX by default applies the following data conversion rules to data returned from Java:</p>
<ul>
<li><p>Any Java numeric types (byte, int, long, float, double, etc) are converted to APL integers or floats. 64-bit integers are converted to APL floats on 32-bit platforms, to APL integers on 64-bit platforms.</p></li> 
<li><p>Java booleans are converted to APL binary values 0 or 1</p></li> 
<li><p>Java Strings and Chars are converted to APL character arrays, translated from Unicode to APLX internal representation.  (Any characters which do not appear in the APLX character set are converted to question marks.)</p></li> 
<li><p>Simple Java arrays are converted to APL arrays, with individual elements converted as above. </p></li>  
</ul>
<p>Anything else is left as an object in the Java environment, and a reference to the object is returned to APL.</p>   

<p>There are some special cases to consider.  The data might not be convertible at all, or it might lose precision in the conversion. To handle cases like this, APLX provides the <A HREF="ch_020_080_140.htm"><code>&#9109;REF</code></A> system method. This forces the data to remain as a Java object. You can then call Java methods appropriate to the data type.</p>

<p>An example which cannot be represented at all is where a Java <tt>Double</tt> contains a NaN (Not A Number). APL does not handle NaNs, so it cannot be converted to an APL floating-point value. Instead, NaNs are left as Java objects. If you try to use the data in an APL expression, you will get a DOMAIN ERROR, but you can see that it is a NaN and use Java methods on it.</p>


<H2>Using the Java interface from multiple APL tasks</H2>
<p>Because it is not safe to call the Java virtual machine from multiple threads, you cannot use the Java interface from more than one APL task at a time.  If you try to do so, you will get an error message and a DOMAIN error:</p>

<pre>      'java' &#9109;NEW 'java.util.Date'
Java Virtual Machine (JVM) is already in use by another APL task
DOMAIN ERROR
      'java' &#9109;NEW 'java.util.Date'
      ^
</pre>

<p>The lock will be cleared when the APL task which has been accessing Java executes a <tt>)CLEAR</tt>, <tt>)LOAD</tt>, or <tt>)OFF</tt>.</p>

<H3>Example</H3>

<pre>      &#8711;DEMO_TimeZone;date;tzclass;tz;dateFormat;dateList
[1]  &#9053; Demonstration of using a TimeZone object in Java
[2]  &#9053;
[3]  &#9053; First create a date
[4]   date&#8592;'java' &#9109;NEW 'java.util.Date'
[5]  &#9053;
[6]  &#9053; What is the date?
[7]   'Result of date.toString: ',date.toString
[8]   ''
[9]  &#9053; To create a TimeZone object we need to call a static
[10] &#9053; method in the TimeZone class
[11]  tzclass&#8592;'java' &#9109;GETCLASS 'java.util.TimeZone'
[12]  tz&#8592;tzclass.getTimeZone 'America/Los_Angeles'
[13] &#9053;
[14] &#9053; Could also call the static method directly...
[15]  tz&#8592;'JAVA' &#9109;CALL 'java.util.TimeZone.getTimeZone' 'America/Los_Angeles'
[16] &#9053;
[17] &#9053; Does this time zone use daylight savings time?
[18]  'Result of tz.useDaylightTime: ',tz.useDaylightTime
[19]  ''
[20] &#9053; What is the time zone called with and without daylight savings time?
[21]  'Result of tz.getDisplayName: ',tz.getDisplayName 1(tz.LONG)
[22]  'Result of tz.getDisplayName: ',tz.getDisplayName 0(tz.LONG)
[23]  ''
[24] &#9053; What is the current date/time in our local time zone?
[25] &#9053; We create a SimpleDateFormat object to format the date
[26]  dateFormat&#8592;'java' &#9109;NEW 'java.text.SimpleDateFormat' 'EEE, d MMM yyyy HH:mm
      :ss, zzzz'
[27]  'Today''s local date/time is: ',dateFormat.format date
[28] &#9053;
[29] &#9053; What's the same date/time in Los Angeles?
[30]  dateFormat.setTimeZone tz
[31]  'In Los Angeles, that''s: ',dateFormat.format date
[32]  ''
[33] &#9053;
[34] &#9053; Let's make 12 dates with different months
[35]  dateList&#8592;date.&#9109;CLONE 12
[36]  dateList.setMonth((&#9075;12)-&#9109;IO)
[37] &#9053;
[38] &#9053; Format each of these dates for Los Angeles time
[39]  'Here are some more dates with the month changed:'
[40]  12 1&#9076;dateFormat.format&#168;dateList
[41]  &#8711;
</pre>

<p>This produces the following output:</p>

<pre>Result of date.toString: Tue Nov 20 14:37:36 GMT 2007

Result of tz.useDaylightTime:  1

Result of tz.getDisplayName: Pacific Daylight Time
Result of tz.getDisplayName: Pacific Standard Time

Today's local date/time is: Tue, 20 Nov 2007 14:37:36, Greenwich Mean Time
In Los Angeles, that's: Tue, 20 Nov 2007 06:37:36, Pacific Standard Time


Here are some more dates with the month changed:
 Sat, 20 Jan 2007 06:37:36, Pacific Standard Time
 Tue, 20 Feb 2007 06:37:36, Pacific Standard Time
 Tue, 20 Mar 2007 07:37:36, Pacific Daylight Time
 Fri, 20 Apr 2007 06:37:36, Pacific Daylight Time
 Sun, 20 May 2007 06:37:36, Pacific Daylight Time
 Wed, 20 Jun 2007 06:37:36, Pacific Daylight Time
 Fri, 20 Jul 2007 06:37:36, Pacific Daylight Time
 Mon, 20 Aug 2007 06:37:36, Pacific Daylight Time
 Thu, 20 Sep 2007 06:37:36, Pacific Daylight Time
 Sat, 20 Oct 2007 06:37:36, Pacific Daylight Time
 Tue, 20 Nov 2007 06:37:36, Pacific Standard Time
 Thu, 20 Dec 2007 06:37:36, Pacific Standard Time
 </pre>


<hr>
</td>
</tr>
<tr>
<td width="800" valign="top" colspan="2">
<center>Topic: <A HREF="ch.htm">APLX Help</A> : <A HREF="ch_070.htm">Interfacing to other languages</A> : <A HREF="ch_070_040.htm">Interfacing to Java</A>
</center>
<center>
[<A HREF="ch_070_050.htm">Next</A> | <A HREF="ch_070_030.htm">Previous</A> | <A HREF="ch.htm">Contents</A> | <A HREF="help_index.htm">Index</A>  | <A HREF="http://www.microapl.co.uk/apl/index.html">APL Home</A> ]</center>
<br></td>
</tr>
</table>
<!-- %%COMMON_BODY_TAIL%% -->
<p class="copyright">Copyright &copy; 1996-2010 MicroAPL Ltd</p>
<!-- %%END%% -->
</body>
</html>