Java Doc for LineNumberReader.java in  » Apache-Harmony-Java-SE » java-package » java » io » 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 » Apache Harmony Java SE » java package » java.io 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.io.Reader
      java.io.BufferedReader
         java.io.LineNumberReader

LineNumberReader
public class LineNumberReader extends BufferedReader (Code)
LineNumberReader is a buffered character input reader which counts line numbers as data is being read. The line number starts at 0 and is incremented any time '\r', '\n', or '\r\n' is read.
See Also:   BufferedWriter



Constructor Summary
public  LineNumberReader(Reader in)
     Constructs a new buffered LineNumberReader on the Reader in.
public  LineNumberReader(Reader in, int size)
     Constructs a new buffered LineNumberReader on the Reader in.

Method Summary
public  intgetLineNumber()
     Answers a int representing the current line number for this LineNumberReader.
public  voidmark(int readlimit)
     Set a Mark position in this LineNumberReader.
public  intread()
     Reads a single char from this LineNumberReader and returns the result as an int.
public  intread(char[] buffer, int offset, int count)
     Reads at most count chars from this LineNumberReader and stores them in char array buffer starting at offset offset.
public  StringreadLine()
     Answers a String representing the next line of text available in this LineNumberReader.
public  voidreset()
     Reset this LineNumberReader to the last marked location.
public  voidsetLineNumber(int lineNumber)
     Sets the lineNumber of this LineNumberReader to the specified lineNumber.
public  longskip(long count)
     Skips count number of chars in this LineNumberReader. Subsequent read()'s will not return these chars unless reset() is used.


Constructor Detail
LineNumberReader
public LineNumberReader(Reader in)(Code)
Constructs a new buffered LineNumberReader on the Reader in. The default buffer size (8K) is allocated and all reads can now be filtered through this LineNumberReader.
Parameters:
  in - the Reader to buffer reads on.



LineNumberReader
public LineNumberReader(Reader in, int size)(Code)
Constructs a new buffered LineNumberReader on the Reader in. The buffer size is specified by the parameter size and all reads can now be filtered through this LineNumberReader.
Parameters:
  in - the Reader to buffer reads on.
Parameters:
  size - the size of buffer to allocate.




Method Detail
getLineNumber
public int getLineNumber()(Code)
Answers a int representing the current line number for this LineNumberReader. int the current line number.



mark
public void mark(int readlimit) throws IOException(Code)
Set a Mark position in this LineNumberReader. The parameter readLimit indicates how many characters can be read before a mark is invalidated. Sending reset() will reposition the reader back to the marked position provided readLimit has not been surpassed. The lineNumber associated with this marked position will also be saved and restored when reset() is sent provided readLimit has not been surpassed.
Parameters:
  readlimit - an int representing how many characters must be read beforeinvalidating the mark.
throws:
  IOException - If an error occurs attempting mark this LineNumberReader.



read
public int read() throws IOException(Code)
Reads a single char from this LineNumberReader and returns the result as an int. The low-order 2 bytes are returned or -1 of the end of reader was encountered. This implementation returns a char from the target reader. The line number count is incremented if a line terminator is encountered. A line delimiter sequence is determined by '\r', '\n', or '\r\n'. In this method, the sequence is always translated into '\n'. int The char read or -1 if end of reader.
throws:
  IOException - If the reader is already closed or another IOExceptionoccurs.



read
public int read(char[] buffer, int offset, int count) throws IOException(Code)
Reads at most count chars from this LineNumberReader and stores them in char array buffer starting at offset offset. Answer the number of chars actually read or -1 if no chars were read and end of reader was encountered. This implementation reads chars from the target stream. The line number count is incremented if a line terminator is encountered. A line delimiter sequence is determined by '\r', '\n', or '\r\n'. In this method, the sequence is always translated into '\n'.
Parameters:
  buffer - the char array in which to store the read chars.
Parameters:
  offset - the offset in buffer to store the read chars.
Parameters:
  count - the maximum number of chars to store in buffer. the number of chars actually read or -1 if end of reader.
throws:
  IOException - If the reader is already closed or another IOExceptionoccurs.



readLine
public String readLine() throws IOException(Code)
Answers a String representing the next line of text available in this LineNumberReader. A line is represented by 0 or more characters followed by '\n', '\r', "\n\r" or end of stream. The String does not include the newline sequence. String the contents of the line or null if no characters wereread before end of stream.
throws:
  IOException - If the LineNumberReader is already closed or some other IOerror occurs.



reset
public void reset() throws IOException(Code)
Reset this LineNumberReader to the last marked location. If the readlimit has been passed or no mark has been set, throw IOException. This implementation resets the target reader. It also resets the line count to what is was when this reader was marked.
throws:
  IOException - If the reader is already closed or another IOExceptionoccurs.



setLineNumber
public void setLineNumber(int lineNumber)(Code)
Sets the lineNumber of this LineNumberReader to the specified lineNumber. Note that this may have side effects on the line number associated with the last marked position.
Parameters:
  lineNumber - the new lineNumber value.



skip
public long skip(long count) throws IOException(Code)
Skips count number of chars in this LineNumberReader. Subsequent read()'s will not return these chars unless reset() is used. This implementation skips count number of chars in the target stream and increments the lineNumber count as chars are skipped.
Parameters:
  count - the number of chars to skip. the number of chars actually skipped.
throws:
  IOException - If the reader is already closed or another IOExceptionoccurs.



Methods inherited from java.io.BufferedReader
public void close() throws IOException(Code)(Java Doc)
public void mark(int readlimit) throws IOException(Code)(Java Doc)
public boolean markSupported()(Code)(Java Doc)
public int read() throws IOException(Code)(Java Doc)
public int read(char[] buffer, int offset, int length) throws IOException(Code)(Java Doc)
public String readLine() throws IOException(Code)(Java Doc)
public boolean ready() throws IOException(Code)(Java Doc)
public void reset() throws IOException(Code)(Java Doc)
public long skip(long amount) throws IOException(Code)(Java Doc)

Fields inherited from java.io.Reader
protected Object lock(Code)(Java Doc)

Methods inherited from java.io.Reader
abstract public void close() throws IOException(Code)(Java Doc)
public void mark(int readLimit) throws IOException(Code)(Java Doc)
public boolean markSupported()(Code)(Java Doc)
public int read() throws IOException(Code)(Java Doc)
public int read(char buf) throws IOException(Code)(Java Doc)
abstract public int read(char buf, int offset, int count) throws IOException(Code)(Java Doc)
public int read(CharBuffer target) throws IOException(Code)(Java Doc)
public boolean ready() throws IOException(Code)(Java Doc)
public void reset() throws IOException(Code)(Java Doc)
public long skip(long count) throws IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object object)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final public Class<? extends Object> getClass()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public void notify()(Code)(Java Doc)
final public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final public void wait(long millis, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait(long millis) 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.