logo

Classe Java.io.LineNumberReader en Java

Un flux de saisie de caractères mis en mémoire tampon qui assure le suivi des numéros de ligne. Cette classe définit les méthodes setLineNumber(int) et getLineNumber() pour définir et obtenir respectivement le numéro de ligne actuel.
  • Par défaut, la numérotation des lignes commence à 0. Ce numéro s'incrémente à chaque fin de ligne au fur et à mesure de la lecture des données et peut être modifié avec un appel à setLineNumber(int).
  • Notez cependant que setLineNumber(int) ne modifie pas réellement la position actuelle dans le flux ; cela change uniquement la valeur qui sera renvoyée par getLineNumber().
  • Une ligne est considérée comme terminée par un saut de ligne (« n »), un retour chariot (« r ») ou un retour chariot suivi immédiatement d'un saut de ligne.
Constructeurs :
    LineNumberReader(Lecteur entrant) :Créez un nouveau lecteur de numérotation de lignes en utilisant la taille du tampon d'entrée par défaut. LineNumberReader(Lecteur en int sz) :Créez un nouveau lecteur de numérotation de lignes lisant les caractères dans un tampon de la taille donnée.
Méthodes :
    int getLineNumber() : Get the current line number.
      Syntax :  public int getLineNumber()   Returns:   The current line number
    marque vide (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 lire() : 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
    Chaîne 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
    annuler la réinitialisation() : Reset the stream to the most recent mark.
      Syntax :  public void reset() throws IOException   Throws:   IOException
    void setLineNumber(int lineNumber) : Set the current line number.
      Syntax :  public void setLineNumber(int lineNumber)   Parameters:   lineNumber - An int specifying the line number
    saut long(long 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
Programme : Java
//Java program demonstrating LineNumberReader methods import java.io.FileReader; import java.io.IOException; import java.io.LineNumberReader; class LineNumberReaderDemo {  public static void main(String[] args) throws IOException   {  FileReader fr = new FileReader('file.txt');  LineNumberReader lnr = new LineNumberReader(fr);  char c[] = new char[20];  //illustrating setLineNumber()  lnr.setLineNumber(0);    //illustrating set  System.out.println(lnr.getLineNumber());    //illustrating markSupported() method  if(lnr.markSupported())  {  System.out.println('mark() method is supported');  //illustrating mark method  lnr.mark(100);  }    /*File Contents  * This is first line  this is second line  This is third line  */    //skipping 19 characters  lnr.skip(19);  //illustrating ready() method  if(lnr.ready())  {  //illustrating readLine() method  System.out.println(lnr.readLine());  //illustrating read(char c[]int offint len)  lnr.read(c);  for (int i = 0; i <20 ; i++)  {  System.out.print(c[i]);  }    //illustrating reset() method  lnr.reset();    for (int i = 0; i <18 ; i++)  {  //illustrating read() method  System.out.print((char)lnr.read());  }  int ch;    //illustrating read() method  System.out.println(lnr.readLine());  while((ch = lnr.read())==1)  System.out.print((char)ch);  }    //close the stream  lnr.close();  } } 
Sortir :
0 mark() method is supported this is second line This is third line This is first line
Créer un quiz