no ':' in url exception am getting that exception when am trying to execute this fragment of code...
FileConnection conn;
try{
conn =(FileConnection)Connector.open("/NewFile.xml");
if(!conn.exists())
conn.create();
_screen.add(new RichTextField("Connection Established..."));
_screen.add(new SeparatorField());
} catch(IOException ioe) {
_screen.add(new RichTextField(ioe.getMessage()));
}
where /NewFile.xml is a xml file in my Project