3D Graphics
PDF FilesPossible approaches to create PDF files from within a Java program:
Graphing
IconsSun has a page of suggested toolbar icons that have been designed with the Java look and feel in mind.Sun is starting to open up the interface to the desktop from Java BooksThere are quite a number of books on Java, the ones I have bought and used are:Articles
java -server -jar beanshell.jar
or else modify the jvm.cfg file
in your
Java installation. (It's a text file, so you can use Notepad or Emacs
to edit it.) This is located in C:\Program Files\Java\j2reXXX\lib\i386\
on Windows, /usr/java/j2reXXX/lib/i386/ on Linux. You will see two
lines:
-client KNOWN
-server KNOWN
You should change them to:
-server KNOWN
-client KNOWN
This change will cause the server
VM to
be run for all applications, unless they are run with the -client
argument.
JAVA Applets
|