org.archive.io

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 » Web Crawler » heritrix » org.archive.io 
org.archive.io
Java Source File NameTypeComment
Arc2Warc.javaClass Convert ARCs to (sortof) WARCs.
ArchiveFileConstants.javaInterface Constants used by Archive files and in Archive file processing.
ArchiveReader.javaClass Reader for an Archive file of Archive ArchiveRecord s.
ArchiveReaderFactory.javaClass Factory that returns an Archive file Reader.
ArchiveRecord.javaClass Archive file Record.
ArchiveRecordHeader.javaInterface Archive Record Header.
ArraySeekInputStream.javaClass A repositionable stream backed by an array.
BufferedSeekInputStream.javaClass Buffers data from some other SeekInputStream.
BufferedSeekInputStreamTest.javaClass Unit test for BufferedSeekInputStream.
ByteReplayCharSequence.javaClass Provides a (Replay)CharSequence view on recorded stream bytes (a prefix buffer and overflow backing file). Treats the byte stream as 8-bit.

Uses a wraparound rolling buffer of the last windowSize bytes read from disk in memory; as long as the 'random access' of a CharSequence user stays within this window, access should remain fairly efficient. (So design any regexps pointed at these CharSequences to work within that range!)

When rereading of a location is necessary, the whole window is recentered around the location requested.

CharSubSequence.javaClass Provides a subsequence view onto a CharSequence.
CompositeFileInputStream.javaClass
CompositeFileReader.javaClass
Endian.javaClass Reads integers stored in big or little endian streams.
GenerationFileHandler.javaClass FileHandler with support for rotating the current file to an archival name with a specified integer suffix, and provision of a new replacement FileHandler with the current filename.
GzipHeader.javaClass Read in the GZIP header. See RFC1952 for specification on what the header looks like. Assumption is that stream is cued-up with the gzip header as the next thing to be read.

Of Java and unsigned bytes.

GzippedInputStream.javaClass Subclass of GZIPInputStream that can handle a stream made of multiple concatenated GZIP members/records. This class is needed because GZIPInputStream only finds the first GZIP member in the file even if the file is made up of multiple GZIP members.

Takes an InputStream stream that implements RepositionableStream interface so it can backup over-reads done by the zlib Inflater class.

Use the GzippedInputStream.iterator() method to get a gzip member iterator. Calls to Iterator.next returns the next gzip member in the stream.

GzippedInputStreamTest.javaClass
MultiByteReplayCharSequence.javaClass Provides a (Replay)CharSequence view on recorded streams (a prefix buffer and overflow backing file) that can handle streams of multibyte characters. If possible, use ByteReplayCharSequence .
NoGzipMagicException.javaClass
ObjectPlusFilesInputStream.javaClass Enhanced ObjectOutputStream with support for restoring files that had been saved, in parallel with object serialization.
ObjectPlusFilesOutputStream.javaClass Enhanced ObjectOutputStream which maintains (a stack of) auxiliary directories and offers convenience methods for serialized objects to save their related disk files alongside their serialized version.
OriginSeekInputStream.javaClass Alters the origin of some other SeekInputStream.
RandomAccessInputStream.javaClass Wraps a RandomAccessFile with an InputStream interface.
RandomAccessOutputStream.javaClass Wraps a RandomAccessFile with OutputStream interface.
RecorderIOException.javaClass
RecorderLengthExceededException.javaClass Indicates a length exception thrown by the Recorder.
RecorderTimeoutException.javaClass Indicates a timeout thrown by the RecordingInputStream.
RecorderTooMuchHeaderException.javaClass
RecordingInputStream.javaClass Stream which records all data read from it, which it acquires from a wrapped input stream.
RecordingInputStreamTest.javaClass Test cases for RecordingInputStream.
RecordingOutputStream.javaClass An output stream that records all writes to wrapped output stream. A RecordingOutputStream can be wrapped around any other OutputStream to record all bytes written to it.
RecordingOutputStreamTest.javaClass Test casesfor RecordingOutputStream.
RecoverableIOException.javaClass A decorator on IOException for IOEs that are likely not fatal or at least merit retry.
RecyclingFastBufferedOutputStream.javaClass Lightweight, unsynchronised, aligned output stream buffering class.

This class provides buffering for output streams, but it does so with purposes and an internal logic that are radically different from the ones adopted in java.io.BufferedOutputStream .

All methods are unsychronised.

ReplayCharSequence.javaInterface CharSequence interface with addition of a ReplayCharSequence.close() method.
ReplayCharSequenceTest.javaClass Test ReplayCharSequences.
ReplayInputStream.javaClass Replays the bytes recorded from a RecordingInputStream or RecordingOutputStream.
RepositionableInputStream.javaClass Wrapper around an InputStream to make a primitive Repositionable stream.
RepositionableInputStreamTest.javaClass
SafeSeekInputStream.javaClass Enables multiple concurrent streams based on the same underlying stream.
SeekInputStream.javaClass Base class for repositionable input streams.
SeekReader.javaClass Base class for repositionable readers.
SeekReaderCharSequence.javaClass
SinkHandler.javaClass A handler that keeps an in-memory vector of all events deemed loggable by configuration. Use it to iterate over logged events long after their occurance.
SinkHandlerLogRecord.javaClass Version of LogRecord used by SinkHandler. Adds being able to mark the LogRecord as already-read and timestamping time of creation.
SinkHandlerTest.javaClass
UTF8Bytes.javaInterface Marker Interface for instances that can be serialized as UTF8 bytes.
Warc2Arc.javaClass Convert WARCs to (sortof) ARCs. WARCs can be 1Gig in size, that is, 10x default ARC size.
WriterPool.javaClass Pool of Writers. Abstract.
WriterPoolMember.javaClass Member of WriterPool . Implements rotating off files, file naming with some guarantee of uniqueness, and position in file.
WriterPoolSettings.javaInterface Settings object for a WriterPool .
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.