Un flusso di input di caratteri memorizzato nel buffer che tiene traccia dei numeri di riga. Questa classe definisce i metodi setLineNumber(int) e getLineNumber() rispettivamente per impostare e ottenere il numero di riga corrente.
Per impostazione predefinita, la numerazione delle righe inizia da 0. Questo numero aumenta a ogni terminatore di riga man mano che i dati vengono letti e può essere modificato con una chiamata a setLineNumber(int).
Si noti tuttavia che setLineNumber(int) in realtà non modifica la posizione corrente nel flusso; cambia solo il valore che verrà restituito da getLineNumber().
Una riga viene considerata terminata da uno qualsiasi tra un avanzamento riga ('n'), un ritorno a capo ('r') o un ritorno a capo seguito immediatamente da un avanzamento riga.
Costruttori:
LineNumberReader(Lettore in) :
Crea un nuovo lettore di numerazione delle righe utilizzando la dimensione del buffer di input predefinita.
LineNumberReader(Lettore in int sz) :
Crea un nuovo lettore di numerazione delle righe che legge i caratteri in un buffer della dimensione specificata. Metodi:
int getNumeroRiga() :
Get the current line number.
Syntax : public int getLineNumber() Returns: The current line number
void mark(int readAheadLimit):
Mark the present position in the stream.Subsequent calls to reset() will attempt to reposition the stream to this point and will also reset the line number appropriately.
Syntax : public void mark(int readAheadLimit) throws IOException Parameters: readAheadLimit - Limit on the number of characters that may be read while still preserving the mark. After reading this many characters attempting to reset the stream may fail. Throws: IOException
int leggi() :
Read a single character.Line terminators are compressed into single newline ('n') characters. Whenever a line terminator is read the current line number is incremented.
Syntax : public int read() throws IOException Returns: The character read or -1 if the end of the stream has been reached Throws: IOException
int read(char[] cbuf int off int len) :
Read characters into a portion of an array.Whenever a line terminator is read the current line number is incremented.
Syntax : public int read(char[] cbuf int off int len) throws IOException Parameters: cbuf - Destination buffer off - Offset at which to start storing characters len - Maximum number of characters to read Returns: The number of bytes read or -1 if the end of the stream has already been reached Throws: IOException
Stringa readLine() :
Read a line of text.Whenever a line terminator is read the current line number is incremented.
Syntax : public String readLine() throws IOException Returns: A String containing the contents of the line not including any line termination characters or null if the end of the stream has been reached Throws: IOException
ripristino nullo() :
Reset the stream to the most recent mark.
Syntax : public void reset() throws IOException Throws: IOException
void setNumeroRiga(int NumeroRiga) :
Set the current line number.
Syntax : public void setLineNumber(int lineNumber) Parameters: lineNumber - An int specifying the line number
salto lungo(lungo n):
Skip characters.
Syntax : public long skip(long n) throws IOException Parameters: n - The number of characters to skip Returns: The number of characters actually skipped Throws: IOException IllegalArgumentException
Programma: Java
//Java program demonstrating LineNumberReader methodsimportjava.io.FileReader;importjava.io.IOException;importjava.io.LineNumberReader;classLineNumberReaderDemo{publicstaticvoidmain(String[]args)throwsIOException{FileReaderfr=newFileReader('file.txt');LineNumberReaderlnr=newLineNumberReader(fr);charc[]=newchar[20];//illustrating setLineNumber()lnr.setLineNumber(0);//illustrating setSystem.out.println(lnr.getLineNumber());//illustrating markSupported() methodif(lnr.markSupported()){System.out.println('mark() method is supported');//illustrating mark methodlnr.mark(100);}/*File Contents * This is first line this is second line This is third line *///skipping 19 characterslnr.skip(19);//illustrating ready() methodif(lnr.ready()){//illustrating readLine() methodSystem.out.println(lnr.readLine());//illustrating read(char c[]int offint len)lnr.read(c);for(inti=0;i<20;i++){System.out.print(c[i]);}//illustrating reset() methodlnr.reset();for(inti=0;i<18;i++){//illustrating read() methodSystem.out.print((char)lnr.read());}intch;//illustrating read() methodSystem.out.println(lnr.readLine());while((ch=lnr.read())==1)System.out.print((char)ch);}//close the streamlnr.close();}}
Produzione :
0 mark() method is supported this is second line This is third line This is first line