+ 1
How do you import a Java api package into your code?(I assume your code playground?)
Importing Java packages from the internet.
1 Antwort
0
// for standard Java API, add at begin of surce code before class
import java.util.Arrays;
import java.io.*;
non-standard (your own) packages are not supported here, but you can copy every codes in one source file