deploying java programs (applications)
Matthew Seaman
m.seaman at infracaninophile.co.uk
Tue Mar 23 09:26:34 PST 2004
On Tue, Mar 23, 2004 at 11:42:04AM -0500, Lukman Jaji wrote:
> there is this problem i'm having.......it may not be a problem to u, my club members
> is it possible to deploy java programs and turn them into an icon where all you have to do is double click the icon and the icon and the program executes. is it also possible to turn it into an icon of your own, not the java tea cup. is it possible to bind an sql database with a java front end and deploy it e.g installing an application you have designed on the system you of the owner, must sql be installed.......are these stupid questions?
It is certainly possible to do something like what you want, but the
details depend very much on the system you're running the java
application on, and such things as what window manager you're using.
Under Unix, java applications are often started up from small
shell-script wrappers, which do such things as setup the class path
and then invoke java on the applications' entry point class. Look at
/usr/local/bin/ant (from the devel/apache-ant port) as an example.
Exactly how an icon might be assigned to that script is OS and window
manager dependent.
Alternatively, look into Java WebStart --
http://java.sun.com/products/javawebstart/ -- which lets you install
Java appications by clicking on a link on a web page. JavaWS lets you
associate whatever image you want with the application through an XML
configuration file. It's standard with any J2EE JDK or JRE.
For the connectivity to the SQL database, look at JDBC (Java DataBase
Connector) This is a standard database-independent connector
architecture and API (http://java.sun.com/docs/books/jdbc/) You need
to add an appropriate driver module to let it communicate with the
particular variety of database you're using. eg. see the
databases/mysql-connector-java port
(http://www.mysql.com/products/connector-j/index.html).
Cheers,
Matthew
--
Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks
Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614 Bucks., SL7 1TH UK
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-java/attachments/20040323/3ce51d99/attachment.bin
More information about the freebsd-java
mailing list