Open In App

Package Imports in JShell of Java 9

Last Updated : 15 Apr, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

Package Imports

By default, 10 packages are imported and can also be imported any package by using import statement.

To see, default import packages, we can use following command.
jshell import

Importing java.sql package.
sql import


Listing import packages and it will show available accessible packages.

jshell import

Now number of packages are 11 including new one java.sql.*

Jshell Commands

Jshell provides various useful commands that we can use to modify environment, manage code and to get code related information. Following are the useful information.

Package Imports
import

Command /vars to show variables

/vars

To get all written source code, use /list

/list


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads