Java Tools FAQ Section Index | Page 4
How do you change the initial working directory for programs running in VAJ? It always starts in: <VAJ-Installation>ideproject_resources<project name>.
How do you change the initial working directory for...
How do you change the initial working directory for programs running in VAJ? It always starts in: <VAJ-Installation>ideproject_resources...more
Can I redistribute Sun's "javac" Java source code compiler with my product?
Yes, as of October 17th, 2001, it is now permissible to redistribute the javac compiler according to Sun's updated
Binary Code License Agreement. See also, Sun's updated
README for the JRE.
more
Are there any Java-based programming text editors available?
jEdit is a programmer's text editor written in Java. It uses the Swing toolkit for the GUI and can be configured as a rather powerful IDE through the use of its plugin architecture. For details, s...more
How can I tell if my Netscape Communicator supports 40 or 128 bit encryption?
If your browser is the US version, it supports 128 bit encryption; International versions support 40 bit encryption. You can determine your browser version by typing in the following Javascript sn...more
How does Jtrix differ from EJBs?
Enterprise JavaBean (EJB) technology is all about distributed objects,
while Jtrix is all about distributed services.
EJBs have the advantage that they do a lot for you, such as transactions
and...more
Is there any open source tool will allow me to easily add JavaDoc comments to my source code?
DocWiz allows you to add JavaDoc comments to your source code easily. With DocWiz, there's no need to tediously hand-format JavaDoc comments, adding tags and comment structures for each method. Yo...more
What is Jtrix?
Jtrix is an open source Java platform for distributed and adaptive applications.
That means Jtrix applications can exist as
many small components (called "netlets") which communicate
and move arou...more
How can I get my POP mail from a J2ME device?
Check out the J2ME Pop3 Email package from Nextel.
Will there be an API for logging debug statements and exceptions etc? I don't really want to use any external packages or System.out.println.
Yes. JDK1.4 will have java.util.logging.*. More information can be found at Java Logging Overviewmore
Are there any tools for translating from English to other languages?
There are a few sites on the web which offer language translation services. You might want to see BabelFish by AltaVista or InterTran
more
What is Cactus?
Cactus is a simple test framework created by the Jakarta project of the Apache Software Foundation. Cactus can be used for unit testing server-side Java code like servlets, JSPs, custom tag librar...more
What is JMeter?
JMeter from the Apache Software Foundation is a Java application designed to load test functional behavior and measure performance. It was originally designed for testing Web Applications but has ...more
Does anyone know of any software that can generate a Java class from a database table?
Does anyone know of any software that can generate a Java class from a database table?
The generated Java class should contain attributes and getter and setter methods for each of the fields on the...more
What is the version of Java used in within an IDE like Visual Cafe 4?
Go to the applications bin directory or equivalent, find the file called java or vcjava or similar and type
java (or vcjava, or whatever) -version.
more
Is there a way to detect the AS/400 File EOF or BOF?
Because of the terms you are using, I assume you are referring to Record Level Access ( JTOpen covers a lot of territory ). I personally don't use the RLA classes for a number of reasons ( put po...more