Java Doc for TarOutputStream.java in  » Build » ANT » org » apache » tools » tar » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » Build » ANT » org.apache.tools.tar 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.io.OutputStream
      java.io.FilterOutputStream
         org.apache.tools.tar.TarOutputStream

TarOutputStream
public class TarOutputStream extends FilterOutputStream (Code)
The TarOutputStream writes a UNIX tar archive as an OutputStream. Methods are provided to put entries, and then write their contents by writing to this stream using write().


Field Summary
final public static  intLONGFILE_ERROR
     Fail if a long file name is required in the archive.
final public static  intLONGFILE_GNU
     GNU tar extensions are used to store long file names in the archive.
final public static  intLONGFILE_TRUNCATE
     Long paths will be truncated in the archive.
protected  byte[]assemBuf
    
protected  intassemLen
    
protected  TarBufferbuffer
    
protected  longcurrBytes
    
protected  StringcurrName
    
protected  longcurrSize
    
protected  booleandebug
    
protected  intlongFileMode
    
protected  byte[]oneBuf
    
protected  byte[]recordBuf
    

Constructor Summary
public  TarOutputStream(OutputStream os)
     Constructor for TarInputStream.
public  TarOutputStream(OutputStream os, int blockSize)
     Constructor for TarInputStream.
public  TarOutputStream(OutputStream os, int blockSize, int recordSize)
     Constructor for TarInputStream.

Method Summary
public  voidclose()
     Ends the TAR archive and closes the underlying OutputStream.
public  voidcloseEntry()
     Close an entry.
public  voidfinish()
     Ends the TAR archive without closing the underlying OutputStream.
public  intgetRecordSize()
     Get the record size being used by this stream's TarBuffer.
public  voidputNextEntry(TarEntry entry)
     Put an entry on the output stream.
public  voidsetBufferDebug(boolean debug)
     Sets the debugging flag in this stream's TarBuffer.
public  voidsetDebug(boolean debugF)
     Sets the debugging flag.
public  voidsetLongFileMode(int longFileMode)
     Set the long file mode.
public  voidwrite(int b)
     Writes a byte to the current tar archive entry.
public  voidwrite(byte[] wBuf)
     Writes bytes to the current tar archive entry.
public  voidwrite(byte[] wBuf, int wOffset, int numToWrite)
     Writes bytes to the current tar archive entry.

Field Detail
LONGFILE_ERROR
final public static int LONGFILE_ERROR(Code)
Fail if a long file name is required in the archive.



LONGFILE_GNU
final public static int LONGFILE_GNU(Code)
GNU tar extensions are used to store long file names in the archive.



LONGFILE_TRUNCATE
final public static int LONGFILE_TRUNCATE(Code)
Long paths will be truncated in the archive.



assemBuf
protected byte[] assemBuf(Code)



assemLen
protected int assemLen(Code)



buffer
protected TarBuffer buffer(Code)



currBytes
protected long currBytes(Code)



currName
protected String currName(Code)



currSize
protected long currSize(Code)



debug
protected boolean debug(Code)



longFileMode
protected int longFileMode(Code)



oneBuf
protected byte[] oneBuf(Code)



recordBuf
protected byte[] recordBuf(Code)




Constructor Detail
TarOutputStream
public TarOutputStream(OutputStream os)(Code)
Constructor for TarInputStream.
Parameters:
  os - the output stream to use



TarOutputStream
public TarOutputStream(OutputStream os, int blockSize)(Code)
Constructor for TarInputStream.
Parameters:
  os - the output stream to use
Parameters:
  blockSize - the block size to use



TarOutputStream
public TarOutputStream(OutputStream os, int blockSize, int recordSize)(Code)
Constructor for TarInputStream.
Parameters:
  os - the output stream to use
Parameters:
  blockSize - the block size to use
Parameters:
  recordSize - the record size to use




Method Detail
close
public void close() throws IOException(Code)
Ends the TAR archive and closes the underlying OutputStream. This means that finish() is called followed by calling the TarBuffer's close().
throws:
  IOException - on error



closeEntry
public void closeEntry() throws IOException(Code)
Close an entry. This method MUST be called for all file entries that contain data. The reason is that we must buffer data written to the stream in order to satisfy the buffer's record based writes. Thus, there may be data fragments still being assembled that must be written to the output stream before this entry is closed and the next entry written.
throws:
  IOException - on error



finish
public void finish() throws IOException(Code)
Ends the TAR archive without closing the underlying OutputStream. The result is that the two EOF records of nulls are written.
throws:
  IOException - on error



getRecordSize
public int getRecordSize()(Code)
Get the record size being used by this stream's TarBuffer. The TarBuffer record size.



putNextEntry
public void putNextEntry(TarEntry entry) throws IOException(Code)
Put an entry on the output stream. This writes the entry's header record and positions the output stream for writing the contents of the entry. Once this method is called, the stream is ready for calls to write() to write the entry's contents. Once the contents are written, closeEntry() MUST be called to ensure that all buffered data is completely written to the output stream.
Parameters:
  entry - The TarEntry to be written to the archive.
throws:
  IOException - on error



setBufferDebug
public void setBufferDebug(boolean debug)(Code)
Sets the debugging flag in this stream's TarBuffer.
Parameters:
  debug - True to turn on debugging.



setDebug
public void setDebug(boolean debugF)(Code)
Sets the debugging flag.
Parameters:
  debugF - True to turn on debugging.



setLongFileMode
public void setLongFileMode(int longFileMode)(Code)
Set the long file mode. This can be LONGFILE_ERROR(0), LONGFILE_TRUNCATE(1) or LONGFILE_GNU(2). This specifies the treatment of long file names (names >= TarConstants.NAMELEN). Default is LONGFILE_ERROR.
Parameters:
  longFileMode - the mode to use



write
public void write(int b) throws IOException(Code)
Writes a byte to the current tar archive entry. This method simply calls read( byte[], int, int ).
Parameters:
  b - The byte written.
throws:
  IOException - on error



write
public void write(byte[] wBuf) throws IOException(Code)
Writes bytes to the current tar archive entry. This method simply calls write( byte[], int, int ).
Parameters:
  wBuf - The buffer to write to the archive.
throws:
  IOException - on error



write
public void write(byte[] wBuf, int wOffset, int numToWrite) throws IOException(Code)
Writes bytes to the current tar archive entry. This method is aware of the current entry and will throw an exception if you attempt to write bytes past the length specified for the current entry. The method is also (painfully) aware of the record buffering required by TarBuffer, and manages buffers that are not a multiple of recordsize in length, including assembling records from small buffers.
Parameters:
  wBuf - The buffer to write to the archive.
Parameters:
  wOffset - The offset in the buffer from which to get bytes.
Parameters:
  numToWrite - The number of bytes to write.
throws:
  IOException - on error



Fields inherited from java.io.FilterOutputStream
protected OutputStream out(Code)(Java Doc)

Methods inherited from java.io.FilterOutputStream
public void close() throws IOException(Code)(Java Doc)
public void flush() throws IOException(Code)(Java Doc)
public void write(int b) throws IOException(Code)(Java Doc)
public void write(byte b) throws IOException(Code)(Java Doc)
public void write(byte b, int off, int len) throws IOException(Code)(Java Doc)

Methods inherited from java.io.OutputStream
public void close() throws IOException(Code)(Java Doc)
public void flush() throws IOException(Code)(Java Doc)
abstract public void write(int b) throws IOException(Code)(Java Doc)
public void write(byte b) throws IOException(Code)(Java Doc)
public void write(byte b, int off, int len) throws IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.