My basic question - "How to call existing Java method from Perl" has been asked and answered before, but I am confused by the various different responses. Instead of describing the Java code implemented I have provided code snippets (with possible syntax errors) providing the key elements below.

Public Class ConnProperties{ private String driver; private String url; private String username; private String password; public ConnProperties(){ setDriver(null); setUrl(null); setUsername(null); setPassword(null); } ... attribute getter and setter methods } Public Class ConnPropertiesInterface(){ public ConnPropertiesInterface(){ super(); } public ConnProperties getProperties(String appID){ ConnProperties connProps = new ConnProperties(); ... Get Connection Properties from configuration file based on ... appID, update ConnProperties object with returned ... values such as connProps.setDriver(result.getString("driver")); connProps.setUrl(result.getString("url"); return connProps; } }

From existing Perl applications I need to be able to ultimately call the getProperties() method within class ConnPropertiesInterface and to decompose the returned ConnProperties object attributes to be used for connecting to an Oracle database. I have generated a jar file of the existing Java classes so that existing Java applications can successfully call this same method, now I just need to do the same from existing Perl applications. Being very new to Perl programming I am not sure the most correct/efficient way to accomplish this task. Thanks ahead of time for your help/assistance.


In reply to Dazed/Confused from previous posts on how to call Java method from Perl by rgwest61

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.