Hello,
im playing with the Inline Java and i will return a Simple Map (not Treemap or haschmap or is there a trick to convert this to b4a map?)
my Problem beginns with:
error :
if i use :
Map mape = new hashMap();
or
Map mape = new treeMap();
it works but B4A don't understand the hashmap or the tree map is there a other Lib needed ?
greetings
Andy
im playing with the Inline Java and i will return a Simple Map (not Treemap or haschmap or is there a trick to convert this to b4a map?)
my Problem beginns with:
B4X:
import java.util.Map;
public Certificate chkssl(String Server)
throws IOException, CertificateException, CertificateEncodingException
{
Map mape = new Map(); <- will give the error
mape.Initialize();
error :
B4X:
error: Map is abstract; cannot be instantiated
Map mape = new Map();
if i use :
Map mape = new hashMap();
or
Map mape = new treeMap();
it works but B4A don't understand the hashmap or the tree map is there a other Lib needed ?
greetings
Andy