|
Java Code
Here are some java utility programs that I have written:
Base64.java - Encode/Decode
JCrypt.java
- Unix Crypt function
LLExtendedData.java
- Decode Livelink ExtendedData column
URLFormat.java
- Crude URL encoding
ObjectPool.java
- Pool objects such as Database connections safely up to a max
PooledObjectFactory.java
- Factory for creating pooled objects
CacheObjectPool.java
- Pool objects and retain a minimum
FourWayTrie.java
- FourWayTrie data stucture, used by EnvProperties
EnvProperties.java
- Allows preceding properties to be referenced used $
Deque.java
- Stack/Queue = Deque
StrictProperties.java
- Throws exception for non-existant field
PropertyNotFoundException.java
- Exception thrown by StrictProperties
PropertiesListener.java
- Interface to notify when a property is added
CharMap.java
- Object stores what chars are true
IntegerOp.java
- Can test to see if string is a base-10 number.
StringOp.java
- A couple string operations
|