protected void startApp() throws MIDletStateChangeException {
// TODO Auto-generated method stub
FileConnection fconn = null;
try {
fconn = (FileConnection)Connector.open("file:///D:/aaa.txt",Connector.READ_WRITE);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(fconn.exists()){
System.out.println("file is created");
}