| Thread | Last Post | Replies |
|
| Passwordless ActiveDirectory LDAP Bind | 15 Jul 2005 06:38 GMT | 3 |
I am trying to write a command line utility to query Active Directory and process the results into an Oracle database. We would like to have this app run as a scheduled task, however I am not able to connect to the LDAP server without entering a username and password in clear text
|
| What types of variables can be passed with JNI? | 15 Jul 2005 05:38 GMT | 4 |
I have an application whose purpose is to open, display and rezise TIFF files. My application is written mainly in Java, but it uses C/C++ through JNI.
|
| Toward Terser Java | 15 Jul 2005 04:42 GMT | 24 |
I find this pattern occurs repeatedly: String quotation = accumulatedQuotation.toFinalString(); if ( quotation.length() > 0 ) {
|
| Java Exceptions cause performance hit? | 15 Jul 2005 04:07 GMT | 28 |
Hi. I wanted to use exceptions to handle error conditions in my code. I think doing that is useful, as it helps to separate "go" paths from error paths. However, a coding guideline has been presented that says "Use conventional error-handling techniques rather than exception
|
| SQL server 2000 -> JDBC Date Time Format Problem | 15 Jul 2005 03:00 GMT | 2 |
We have a strange problem when Java talks to SQL Server 2000. The following query runs great when executed from Query Analyzer. SELECT prlc_plis_code, prlc_cust_id, prlc_startdate, prlc_enddate, prlc_type FROM PriceListCustomer WHERE 1 = 1
|
| Simple JNI performance question | 15 Jul 2005 00:25 GMT | 11 |
I have a java program that needs to work with raw pixel data captured from the screen. Currently I have the code that captures and processes the data on the native side (in C++) -- and the results of the processing, which are small amounts of data, are passed back to Java.
|
| associating an icon to a jar file | 15 Jul 2005 00:10 GMT | 1 |
I am in the process of deploying a application using a jar file and packaging the application using inno setup for deployment to windows. It would be great if the application could appear in the Programs group with a nice icon and not the window command window icon. Can anyone
|
| insatiate a class based on a string | 14 Jul 2005 22:26 GMT | 4 |
Was wondering if there was a better way to insatiate a class based on some string variable read from a properties file then an if-then-else? String s = "class1"; if (s.equals("class1"))
|
| Creating a Generic array | 14 Jul 2005 22:05 GMT | 12 |
I was trying to make my little stack class type safe. Internally it has a simple array to hold the stack elements. How do I allocate an array of arbitrary type T? public class Stack<T> {
|
| Simple Code? What's Wrong? | 14 Jul 2005 20:16 GMT | 4 |
It's probably something obvious, but this has me stumped: Very simple code extracted from a proper main() int x = 65; int y = 55;
|
| Interactive with Windows default Image Editor to edit images [URGENT HELP] | 14 Jul 2005 19:28 GMT | 2 |
I am currently working on Images using Graphics 2D package. I have created one Java application which load the user specified image into the Java interface. My requirement is to load the windows default editor from that Java
|
| class design question | 14 Jul 2005 18:14 GMT | 2 |
I have different type of messages to be handled in my app. I wrote a base class like BaseHandler { public boolean perform() {
|
| Conundrum with package name in "dynamic" static factory method | 14 Jul 2005 17:51 GMT | 6 |
In the spirit of "most maintainable" code, I'm applying a factory method to instantiate objects using part of a class name that's passed to the factory method, followed by reflection and newInstance(). The code goes something like this:
|
| lib of static class methods, java logging | 14 Jul 2005 17:23 GMT | 2 |
Was wondering what might be the better way to do something in java. I have a class of static methods that are a library and I want to use the java. To do that I need to use the log variable I have setup already. What is the best way to initialize and use that in the methods?
|
| AWT Native Interface | 14 Jul 2005 15:09 GMT | 2 |
I'm working on a Java graphical frontend for a native X11 application and I'm trying to embed the native application window inside a Java AWT Canvas using the AWT Native Interface. Everything works great except for mouse events which seems to be ignored by the native window.
|