answersLogoWhite

0

I believe you are asking about BufferedReader.

It is in java.io package.

java.io.BufferedReader;

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you complie package in java?

You use javac <filename> to compile a class or package.


What is font class in java?

It is a part of swing package.


What is a default package in Java?

A default package is a package with no name. You can create a Java class without putting package name on top of the code. This class is included in the "default package". Be careful not to be confused with java.lang, which is a package that contains Java's fundamental classes and get's imported by default.


Supermost package of java?

The supermost package of Java is the "java" package.


How do you import an entire package of class in java?

import package_name.*;where package_name is your package name.by using this syntax you can import an entire package.


How do you remove a class existence error in Java?

Write the class that supposedly "doesn't exist".


Explanation of import javautilDate?

The import keyword in Java is used to tell the Java compiler where to find different classes and packages.java.util.Date is the location of the Date class: Date is a member of the util package, which is a member of the java package.


How do you import a self created class in java?

It's the same as importing any other class: import [package name].[class name];


How do you write a Java class that implements the collection interface found in the java.util package?

Type in "implements java.util.Collection" after the class name.


What is bufferReader in java?

A BufferReader can read certain things like BufferedImage which with the right code can allow for animation to be done using a G.U.I (Graphical User Interface) if you want to see how its used i would recommend watching TheChernoProjects 3D game programming tutorials on youtube.


Can you store one class in two packages at once in Java?

No, each class is assigned to a single package. There is really no need to have one class in more than one package, either; you can use the "import" command in one class to use classes from another package.


Explain the structure of a java program?

The fundamental structure of any Java programme should look like: [package declarations] [import statements] [class declaration] An example is given below: package abc; import java.lang; class Demo { public static void main(String[] args) { Sytem.out.println("Hello! World"); } } //The file containing this class must be named Demo.java