import java.io.*; public class Example { public static void main(String[] args) throws IOException { FileInputStream fis = new FileInputStream("example.txt"); fis.skip(10); int b; while ((b = fis.read()) != -1) { System.out.print((char) b); } fis.close(); } }In this example, we import the "java.io" package and create a new FileInputStream object called "fis" with the file "example.txt". We then use the "skip" method to skip over the first 10 bytes of the file. Finally, we use a while loop to read every byte in the file and output it to the console as characters. The "java.io" package is part of the Java standard library and does not require any additional package installations.