Listing All Classes In A Jar File Using ColdFusion

Posted October 2, 2008 at 8:05 PM

Tags: ColdFusion

You'll probably never need to do this, but today, I needed to find out what Java classes were available in a given JAR file using ColdFusion. The reason - I was doing some work on my POI Utility ColdFusion custom tags and I needed to see if the version of the POI JAR that ships with ColdFusion supports certain classes. Turns out, this is a fairly straightforward task. I wrapped the functionality up in a ColdFusion user defined function that takes the expanded path to the target JAR file:

 Launch code in new window » Download code as text file »

  • <cffunction
  • name="GetJarClasses"
  • access="public"
  • returntype="array"
  • output="false"
  • hint="I return an array of classes in the given JAR file (expanded path).">
  •  
  • <!--- Define arguments. --->
  • <cfargument
  • name="JarFilePath"
  • type="string"
  • required="true"
  • hint="I am the expanded path of the JAR file."
  • />
  •  
  • <!--- Define the local scope. --->
  • <cfset var LOCAL = {} />
  •  
  • <!--- Create a default array of classes. --->
  • <cfset LOCAL.Classes = [] />
  •  
  •  
  • <!---
  • Create a JAR input stream to read in the line items
  • from our target JAR file.
  • --->
  • <cfset LOCAL.JarFile = CreateObject(
  • "java",
  • "java.util.jar.JarInputStream"
  • ).Init(
  •  
  • CreateObject(
  • "java",
  • "java.io.FileInputStream"
  • ).Init(
  •  
  • JavaCast(
  • "string",
  • ARGUMENTS.JarFilePath
  • )
  • )
  • )
  • />
  •  
  •  
  • <!---
  • Now that we have our JAR file input stream, let's loop
  • over all the entries looking for CLASS files.
  • --->
  • <cfloop condition="true">
  •  
  • <!---
  • Get the next entry. This might return NULL if the
  • JAR file has no more classes.
  • --->
  • <cfset LOCAL.JarEntry = LOCAL.JarFile.GetNextJarEntry() />
  •  
  • <!---
  • Check to see if the entry variable exists. If it
  • does not, then it means the JAR file return NULL
  • and we are done finding classes.
  • --->
  • <cfif StructKeyExists( LOCAL, "JarEntry" )>
  •  
  • <!---
  • Check to make sure that this entry is not a
  • directory, but is, in fact a class.
  • --->
  • <cfif REFindNoCase( "\.class$", LOCAL.JarEntry.GetName() )>
  •  
  • <!---
  • Add this class to the array. Since the JAR
  • file really has a directory structure, let's
  • replace the path separators with dots.
  • --->
  • <cfset LOCAL.ClassName = REReplace(
  • LOCAL.JarEntry.GetName(),
  • "[\\/]",
  • ".",
  • "all"
  • ) />
  •  
  • <!--- Strip off the ".class" path item. --->
  • <cfset LOCAL.ClassName = REReplaceNoCase(
  • LOCAL.ClassName,
  • "\.class$",
  • "",
  • "one"
  • ) />
  •  
  • <!--- Add the formatted class name. --->
  • <cfset ArrayAppend(
  • LOCAL.Classes,
  • LOCAL.ClassName
  • ) />
  •  
  • </cfif>
  •  
  • <cfelse>
  •  
  • <cfbreak />
  •  
  • </cfif>
  •  
  • </cfloop>
  •  
  •  
  • <!--- Return the array of classes. --->
  • <cfreturn LOCAL.Classes />
  • </cffunction>

To call it, you just do this (I had a copy of the installed POI JAR file in the same directory as my test file):

 Launch code in new window » Download code as text file »

  • <!--- Get file path to POI installed JAR file. --->
  • <cfset strJarFilePath = ExpandPath(
  • "./poi-2.5.1-final-20040804.jar"
  • ) />
  •  
  • <!--- Output the classes. --->
  • <cfdump
  • var="#GetJarClasses( strJarFilePath )#"
  • label="POI 2.5.1 Final Classes"
  • />

Running this, we get an array with the following values (abbreviated):

org.apache.poi.ddf.DefaultEscherRecordFactory
org.apache.poi.ddf.EscherArrayProperty
org.apache.poi.ddf.EscherBSERecord
org.apache.poi.ddf.EscherBlipRecord
..... several hundred classes .....
org.apache.poi.util.ShortList
org.apache.poi.util.StringUtil
org.apache.poi.util.SystemOutLogger

Anyway, just thought I would post that in case anyone ever needs this kind of functionality.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page




Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Oct 3, 2008 at 9:09 AM // reply »
45 Comments

How is this different then just listing the JAR out with cfzip?


Oct 3, 2008 at 9:10 AM // reply »
31 Comments

I never really play around with JAR files much, so this comment could be totally off base, but, could you have not just used the cfzip tag? It accepts a JAR file and you could use the list action and just dumped that out, right? or am i missing the point? It's Friday so my brain has shut of ffor the weekend :-)


Oct 3, 2008 at 9:10 AM // reply »
31 Comments

@Todd - beat me to it :-)


Oct 3, 2008 at 9:13 AM // reply »
7,572 Comments

@Todd, @Simon,

Oh snap, I totally forgot that CFZip could read JAR files :)


Oct 3, 2008 at 9:30 AM // reply »
7,572 Comments

Thanks guys; amends have been made:

http://www.bennadel.com/index.cfm?dax=blog:1373.view


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 20, 2010 at 12:07 PM
Drawing On The iPhone Canvas With jQuery And ColdFusion
Simply awesome. Saved my day. ... read »
Mar 20, 2010 at 9:00 AM
Building A Fixed-Position Bottom Menu Bar (ala FaceBook)
I would like to say thx for an easy way to create a bottom bar. I do have a ?. Is it possible to center the bar if i want to resize it to ex 85%. Regards Offenbach ... read »
Mar 19, 2010 at 7:26 PM
MySQL 3/4 - com.mysql.jdbc.Driver And allowMultiQueries=true
Thank you very much for this post. Adding allowMultiQueries="true" in context.xml didn't help until I added it to url as allowMultiQueries=true Good idea is to use prepared statements and it will he ... read »
Jim
Mar 19, 2010 at 4:49 PM
Nobody Puts Baby In The Corner!
Wow. This is like suddenly finding a support group for your secret shame. I'm not alone! I always liked this movie, even though it is extremely cheesy. I just wish Jennifer Grey hadn't gotten the ... read »
Mar 19, 2010 at 4:47 PM
Application.cfc OnRequest() Method Affects OnError() Arguments
@Jason and @Ben, I've been doing some CF9 refactoring on our systems and noticed an odd occurrence with onError as well. Found a way to work around my problem, but what I saw was... Background: Our ... read »
Jim
Mar 19, 2010 at 4:44 PM
Shoot 'Em Up Starring Clive Owen And Paul Giamatti
I actually enjoyed this movie quite a lot. It was different, certainly, but I think they were going for more of a Quentin Tarentino-"wow, that was weird"-vibe than an actual spoof. Once I realize ... read »
Mar 19, 2010 at 4:34 PM
An Intensive Exploration Of jQuery With Ben Nadel (Video Presentation)
Hey I guess the video is down. Is there anyway you can upload to youtube or vimeo or some other service? Greatly appreciated. ... read »
Mar 19, 2010 at 4:24 PM
ColdFusion CFPOP - My First Look
@Ben Thanks for the follow up! The root of the problem had to do with being able to trace bounced emails to specific records in a DB table. Let's say you run an email campaign and you get 1,000 bou ... read »