The decorative mode of enhanced class linenumberreader of character stream buffer

Source: Internet
Author: User

Import Java.io.BufferedReader;
Import Java.io.FileReader;
Import java.io.IOException;
Import Java.io.Reader;

/**

  • Simulation Class LineNumberReader
  • Features to get and set line numbers
  • @author Wangshuang
  • */
    public class Demo {

    public static void Main (string[] args) {
    Mylinenumberreader r = null;
    try {
    FileReader fw = new FileReader ("C: n character stream buffer. txt");
    R=new Mylinenumberreader (FW);
    String buff = null;
    while ((Buff=r.myreadline ())!=null) {
    System.out.println (R.getmylinenumber () + ":" +buff);
    }

    } catch (Exception e) {    throw new RuntimeException("读取错误");}finally {    if(r!=null){        try {            r.close();        } catch (IOException e) {            // TODO Auto-generated catch block            e.printStackTrace();        }    }}

    }
    }
    Class Mylinenumberreader extends bufferedreader{
    private int mylinenumber;//Line number counter
    Public Mylinenumberreader (Reader in) {

    super(in);

    }
    Public String Myreadline () throws ioexception{
    mylinenumber++;
    return Super.readline ();
    }
    public int Getmylinenumber () {
    return mylinenumber;
    }
    public void Setmylinenumber (int mylinenumber) {
    This.mylinenumber = Mylinenumber;
    }

}

The decorative mode of enhanced class linenumberreader of character stream buffer

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.