変換の原則流れ

   /**
    * Creates a new <tt>FileReader</tt>, given the name of the
    * file to read from.
    *
    * @param fileName the name of the file to read from
    * @exception  FileNotFoundException  if the named file does not exist,
    *                   is a directory rather than a regular file,
    *                   or for some other reason cannot be opened for
    *                   reading.
    */
    public FileReader(String fileName) throws FileNotFoundException {
        super(new FileInputStream(fileName));
    }

 

リリース1900元の記事 ウォン称賛46 ビュー110 000 +

おすすめ

転載: blog.csdn.net/Leon_Jinhai_Sun/article/details/104046286