Package javax.microedition.rms

Examples of javax.microedition.rms.RecordStoreException


            final DataInputStream in) throws IOException, RecordStoreException {

        final String version = app.getAppProperty("MIDlet-Version");

        if (version == null) {
            throw new RecordStoreException();
        }

        final String rmsVersion = in.readUTF();

        if (rmsVersion == null) {
            throw new RecordStoreException();
        }

        if (!rmsVersion.equals(version)) {
            throw new RecordStoreException();
        }
    }
View Full Code Here

TOP

Related Classes of javax.microedition.rms.RecordStoreException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.