Open In App

Package Imports in JShell of Java 9

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.



Importing java.sql package.


Listing import packages and it will show available accessible packages.



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

Command /vars to show variables

To get all written source code, use /list

Article Tags :