Posts Tagged ‘Java’

Which jar contains my…

Wednesday, February 22nd, 2006 by DenisH

Have you ever had the problem where there’s a class missing and you’ve no idea which jar it might be in? Or been running a Java program and wondered why the implementation of a class doesn’t seem to match what you think, and it turns out that there’s another implementation earlier in the classpath? Or wondered which jar has the properties file you’re looking for?

If you’ve answered yes to any of these question, you might like these little utilities (more…)

Accessing ADSI from Java

Thursday, May 19th, 2005 by DenisH

The aim of this project was to be able to get the groups that an NT user belongs to using ADSI (Active Directory Services Interface) and make this available in Java. In the first article we described how to get ADSI information using VBScript, JScript and then C++. Now we show how to wrap up the C++ function in a DLL that’s accessible using JNI. (more…)

Generating a database dump SQL Script from Java

Thursday, October 28th, 2004 by DenisH

The aim of this project is to generate an SQL script from an existing database such that the tables and data can be recreated exactly as it was. (more…)