com.Ostermiller.util

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Template Engine » ostermillerutils » com.Ostermiller.util 
com.Ostermiller.util
Java Source File NameTypeComment
ArrayEnumeration.javaClass Converts an array to an enumerator.
ArrayHelper.javaClass Convenience methods for working with Java arrays.
ArrayHelperTests.javaClass Regression test for ArrayHelper.
ArrayIterator.javaClass Converts an array to an iterator.
BadDelimeterException.javaClass An Illegal delimiter was specified.

This class has been replaced by BadDelimiterException.

BadDelimiterException.javaClass An Illegal delimiter was specified.
BadLineEndingException.javaClass An illegal line ending was specified.
BadQuoteException.javaClass An illegal quote was specified.
Base64.javaClass Implements Base64 encoding and decoding as defined by RFC 2045: "Multi-purpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies" page 23. More information about this class is available from ostermiller.org.

The Base64 Content-Transfer-Encoding is designed to represent arbitrary sequences of octets in a form that need not be humanly readable.

Base64DecodingException.javaClass Exception that is thrown when an unexpected character is encountered during Base64 decoding.
Base64Tests.javaClass
BinaryDataException.javaClass Signals that binary data was encountered and continuing with a text operation would likely corrupt the data.
Browser.javaClass Allows URLs to be opened in the system browser on Windows and Unix.
BufferOverflowException.javaClass An indication that there was a buffer overflow.
CGIParser.javaClass Parses query string data from a CGI request into name value pairs.
CircularBufferTests.javaClass Regression test for circular buffers.
CircularByteBuffer.javaClass Implements the Circular Buffer producer/consumer model for bytes. More information about this class is available from ostermiller.org.

Using this class is a simpler alternative to using a PipedInputStream and a PipedOutputStream.

CircularCharBuffer.javaClass Implements the Circular Buffer producer/consumer model for characters. More information about this class is available from ostermiller.org.

Using this class is a simpler alternative to using a PipedReader and a PipedWriter.

CircularObjectBuffer.javaClass Implements the Circular Buffer producer/consumer model for Objects.
CmdLn.javaClass Command line argument parser for Java command line programs.
CmdLnArgumentException.javaClass Exception thrown for a problem with a specific command line option.
CmdLnException.javaClass Exception thrown when a command line cannot be parsed.
CmdLnListener.javaClass Call back for when a command line option is found.
CmdLnOption.javaClass A command line option used by the CommandLineOptions parser.
CmdLnResult.javaClass Result when a command line option is found.
CmdLnTests.javaClass Regression tests for the command line options.
ConcatInputStream.javaClass An input stream which reads sequentially from multiple sources.
ConcatReader.javaClass A reader which reads sequentially from multiple sources.
ConcatTests.javaClass Regression test for Concatenation Streams.
CSVParse.javaInterface Read files in comma separated value format.
CSVParser.javaClass Read files in comma separated value format. More information about this class is available from ostermiller.org. CSV is a file format used as a portable representation of a database. Each line is one entry or record and the fields in a record are separated by commas. Commas may be preceded or followed by arbitrary space and/or tab characters which are ignored.

If field includes a comma or a new line, the whole field must be surrounded with double quotes. When the field is in quotes, any quote literals must be escaped by \" Backslash literals must be escaped by \\. Otherwise a backslash and the character following will be treated as the following character, IE.

CSVPrint.javaInterface Print values as a comma separated list.
CSVPrinter.javaClass Print values as a comma separated list.
CSVTests.javaClass Regression test for CSV.
EnumerationIterator.javaClass Converts an Enumeration to an iterator.
ExcelCSVParser.javaClass Read files in comma separated value format as outputted by the Microsoft Excel Spreadsheet program. More information about this class is available from ostermiller.org.

Excel CSV is a file format used as a portable representation of a database. Each line is one entry or record and the fields in a record are separated by commas.

If field includes a comma or a new line, the whole field must be surrounded with double quotes. When the field is in quotes, any quote literals must be escaped by two quotes (""). Text that comes after quotes that have been closed but come before the next comma will be ignored.

Empty fields are returned as as String of length zero: "".

ExcelCSVPrinter.javaClass Print values as a comma separated list that can be read by the Excel spreadsheet.
ExecHelper.javaClass Convenience methods for executing non-Java processes.
ExecHelperTests.javaClass Regression test for ExecHelper.
ExtraCmdLnArgumentException.javaClass
FileHelper.javaClass Utilities for File manipulation.
IteratorEnumeration.javaClass Converts an iterator to an enumerator.
LabeledCSVParser.javaClass Decorate a CSVParse object to provide an index of field names.
LabeledCSVParserTests.javaClass Tests reading files in comma separated value format with a fist line of labels.
author:
   Campbell, Allen T.
LineEnds.javaClass Stream editor to alter the line separators on text to match that of a given platform.
MD5.javaClass MD5 hash generator. More information about this class is available from ostermiller.org.

This class takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input. It is conjectured that it is computationally infeasible to produce two messages having the same message digest, or to produce any message having a given pre-specified target message digest.

MD5InputStream.javaClass Implements MD5 functionality on a stream. More information about this class is available from ostermiller.org.

This class produces a 128-bit "fingerprint" or "message digest" for all data read from this stream. It is conjectured that it is computationally infeasible to produce two messages having the same message digest, or to produce any message having a given pre-specified target message digest.

MD5OutputStream.javaClass Implements MD5 functionality on a stream. More information about this class is available from ostermiller.org.

This class produces a 128-bit "fingerprint" or "message digest" for all data written to this stream. It is conjectured that it is computationally infeasible to produce two messages having the same message digest, or to produce any message having a given pre-specified target message digest.

MD5Tests.javaClass MD5 regression test.
MissingCmdLnArgumentException.javaClass
NameValuePair.javaClass Represents a name value pair as would be used as a CGI parameter.
NoCloseInputStream.javaClass An input stream with a close method with no effect. More information about this class is available from ostermiller.org.

This class is designed to wrap a normal input stream so that it can be passed to methods that read from it and may erroneously close it.

NoCloseOutputStream.javaClass An output stream with a close method with no effect. More information about this class is available from ostermiller.org.

This class is designed to wrap a normal output stream so that it can be passed to methods that write to it and may erroneously close it.

NoCloseReader.javaClass A reader which a close method with no effect. More information about this class is available from ostermiller.org.

This class is designed to wrap a normal reader so that it can be passed to methods that read from it and may erroneously close it.

NoCloseStream.javaInterface A wrapper for a stream (either input or output) which has a close method with no effect.
NoCloseWriter.javaClass A writer with a close method with no effect. More information about this class is available from ostermiller.org.

This class is designed to wrap a normal writer so that it can be passed to methods that write to it and may erroneously close it.

Parallelizer.javaClass Runs multiple jobs in parallel, n threads at a time, and waits until all threads are complete before continuing.

Typically, Parallelizer would be used to run each of the items- in a for loop at the same time.

ParallelizerTests.javaClass Regression test for Parallelizer.
PasswordDialog.javaClass A modal dialog that asks the user for a user name and password.
PasswordVerifier.javaInterface Interface to verify passwords.
PropertiesToken.javaClass A PropertiesToken is a token that is returned by a lexer that is lexing a Java Properties file.
RandPass.javaClass Generates a random String using a cryptographically secure random number generator.

The alphabet (characters used in the passwords generated) may be specified, and the random number generator can be externally supplied.

Care should be taken when using methods that limit the types of passwords may be generated.

RandPassApplet.javaClass An applet that will let the user generate random passwords.
SignificantFigures.javaClass A number with an associated number of significant figures.
SignificantFiguresTests.javaClass Significant Figures regression test.
SizeLimitInputStream.javaClass An input stream wrapper that will read only a set number of bytes from the underlying stream.
SizeLimitInputStreamTests.javaClass Regression test for SizeLimitInputStreams.
StraightStreamReader.javaClass A StraightStreamReader is a bridge from byte streams to character streams: It reads bytes and translates them into characters without using a character encoding.
StraightStreamReaderTests.javaClass Regression test for StraightStreamReader.
StringHelper.javaClass Utilities for String formatting, manipulation, and queries.
StringHelperTests.javaClass StringHelper regression test.
StringTokenizer.javaClass The string tokenizer class allows an application to break a string into tokens. More information about this class is available from ostermiller.org.

The tokenization method is much simpler than the one used by the StreamTokenizer class.

Tabs.javaClass Stream editor to alter the line separators on text to match that of a given platform.
TokenizerTests.javaClass A regression test for com.Ostermiller.util.StringTokenizer.
UberProperties.javaClass The Properties class represents a persistent set of properties.
UberPropertiesTests.javaClass UberProperties regression test.
UnknownCmdLnOptionException.javaClass Exception thrown when a command line option that was unexpected is found.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.