| Thread | Last Post | Replies |
|
| Question about API listed "Field Summary" items | 23 Sep 2005 21:18 GMT | 3 |
When you look in the API at a class or interface, before the methods comes a section called "Field Summary". I dont understand what these are for. In the interface ResultSet, there is one called TYPE_FORWARD_ONLY.
|
| How to delete an application from Tomcat? | 23 Sep 2005 18:08 GMT | 7 |
I'm using Tomcat 5.5.9 on Windows 2000, and IntelliJ IDEA. I started getting "no suitable driver" errors. (The driver -- mysql-connector-java-3.1.8-bin.jar -- is present in "C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\lib". It's also in
|
| how to change default toolkit | 23 Sep 2005 16:32 GMT | 3 |
When starting java AWT, it uses the default toolkit, as defined in kaffe-1.1.6/libraries/javalib/java/awt/Toolkit.java private static String default_toolkit_name
|
| threads returning result | 23 Sep 2005 11:16 GMT | 26 |
hey, i have started couple of multithreads like this for(......) t[i].start(); those threads are doing their individual work . how do i get all the
|
| Did anyone has tried on this? | 23 Sep 2005 10:11 GMT | 1 |
Hi I am creating an ant main object (inheriting org.apache.tools.ant.Main.java) class MyMain extends Main{ }
|
| transparent images created from java 2D | 23 Sep 2005 07:32 GMT | 8 |
AoA all, I am trying to create transparent png images. I create them using the following code : GraphicsEnvironment ge =
|
| URL Object for file in current directory | 23 Sep 2005 07:29 GMT | 5 |
How to create a URL object for a file in the current directory? May I need to use the file protocol? URL url = new URL("file://./filename.ext"); //???? What is the platform independant description for the same?
|
| How does company culture affect you? | 23 Sep 2005 04:42 GMT | 4 |
Please forgive me if this is a little off topic, but I'm trying to reach a population of active programmers and this seems to be a popular gathering place. I am conducting research on how company cultures affect programmer
|
| How to select the class from a set of jars? | 23 Sep 2005 03:52 GMT | 6 |
I am developing a "plug-in" type package for an application server. I have no control on the classpath, which includes many version of the same class in many jars. Unfortunately, the older version comes first, and what I need is the newer
|
| Make URL connection that handles SSL.. | 23 Sep 2005 03:48 GMT | 4 |
I would like to do an URLconnection that works with SSL. I want it to work with both: URL names like https://www.verisign.com URL ip-number like https://65.205.249.60/
|
| New to Java - How to check if a file is already open | 23 Sep 2005 03:47 GMT | 4 |
How can I check if a file is already open before trying to delete it programmatically? something like this if file is open
|
| Counting (and synchronizing) resources | 23 Sep 2005 03:08 GMT | 11 |
I have the following problem: I have a pool of resources with a fixed size and a bunch of client threads that constantly need to use an arbitrary number of resources for a small amount of time. Once a client is done using these resources
|
| iText - Out of Memory Issues | 23 Sep 2005 01:19 GMT | 5 |
Has anyone used the iText library in a Java application concatenate multiple PDFs and experienced 'out-of-memory' exceptions? I am attempted to concatenate up to 25 PDFs with the size varying from 10K to 250K. It appears that iText is taking a tremendous amount of memory to
|
| jaas tomcat callbacks | 23 Sep 2005 00:04 GMT | 1 |
I have an app working using the default passwordcallback, but I want to have more than 1 password. Is it possible to have more than one passwordcallback and override the default "j_password" somehow, or should I create my own callbacks. Alternatively should I use
|
| Swing coding style - comments appreciated | 22 Sep 2005 22:45 GMT | 3 |
I am new to swing and am writing which consists of a main window (extended JFrame) and several child windows (Extended JDialog) Virtually all of my class functionality seems to be contained within anonymous inner classes.
|