I have been designing an application using CodeNameOne via Netbeans and have encountered some issues, notably the "cannot find symbol" compile-error. After further research, I discovered that it was due to CNO not supporting certain libraries/misc.
I was wondering if there were alternate ways to use the following libraries/perform tasks:
(Read from file)
import java.io.File;
symbol: class File
location: package java.io
(Throw FileNotFoundException) import java.io.FileNotFoundException; symbol: class FileNotFoundException location: package java.io
(Read data) import java.util.Scanner; symbol: class Scanner location: package java.util
(Math-based functions) symbol: method pow(double,int) location: class Math
(Create formatted Strings) symbol: method format(String) location: class String