how can I import a file in java programming language

前端 未结 3 1922
面向向阳花
面向向阳花 2021-01-29 11:48

how can I import a file in java programming language

3条回答
  •  無奈伤痛
    2021-01-29 12:25

    If by import a file you meant read a file, there are several ways, probably the most common of which are using the Scanner and BufferedReader objects. Have a look at
    http://java.sun.com/javase/6/docs/api/java/util/Scanner.html
    and
    http://java.sun.com/javase/6/docs/api/java/io/BufferedReader.html
    respectively for information on how to use them.

提交回复
热议问题