Filter Fields : RecordStore « J2ME « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web Services SOA
27. EJB3
28. Spring
29. PDF
30. Email
31. J2ME
32. J2EE Application
33. XML
34. Design Pattern
35. Log
36. Security
37. Apache Common
38. Ant
39. JUnit
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » J2ME » RecordStore 
31. 47. 4. Filter Fields
Filter Fields
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;

import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.TextBox;
import javax.microedition.lcdui.TextField;
import javax.microedition.midlet.MIDlet;
import javax.microedition.rms.RecordEnumeration;
import javax.microedition.rms.RecordFilter;
import javax.microedition.rms.RecordStore;
import javax.microedition.rms.RecordStoreNotFoundException;

public class FilterFieldsMIDlet extends MIDlet implements CommandListener {

  private Command exitCommand;

  private Display display;

  private String[] names = "A""B""C""D" };

  private int[] chineseScore = 74988976 };

  private int[] englishScore = 67898978 };

  private int[] mathScore = 80768078 };

  public FilterFieldsMIDlet() {
    display = Display.getDisplay(this);
    exitCommand = new Command("Exit", Command.EXIT, 1);
  }

  public void startApp() {
    TextBox aTextBox = new TextBox("Main", null, 256, TextField.ANY);

    RecordStore rs = null;
    byte[] nameEmail = null;
    boolean existingOrNot = false;
    boolean OK = true;

    existingOrNot = existing("aRS3");
    if (existingOrNot) {
      try {
        rs = RecordStore.openRecordStore("aRS3"false);
      catch (Exception e) {
        OK = false;
      finally {
        if (OK) {
          aTextBox.setString("Ok");
        else {
          aTextBox.setString("not tOk");
        }
      }
    else {
      try {
        rs = RecordStore.openRecordStore("aRS3"true);
      catch (Exception e) {
        OK = false;
      finally {
        if (OK) {
          aTextBox.setString("Ok");
        else {
          aTextBox.setString("Not Ok");
        }
      }
    }

    Student aStudent = null;

    if (OK)
      try {
        for (int i = 0; i < names.length; i++) {
          aStudent = new Student();
          aStudent.write(names[i], chineseScore[i], englishScore[i], mathScore[i]);
          byte[] data = aStudent.changeToByteArray();
          int recordID = aStudent.getRecordID();
          if (recordID != -1) {
            rs.setRecord(recordID, data, 0, data.length);
          else {
            recordID = rs.addRecord(data, 0, data.length);
            aStudent.setRecordID(recordID);
          }
          aStudent = null;
        }
        aTextBox.setString("Added");
      catch (Exception e) {
        aTextBox.setString("Failed");
      }

    String result = "";
    aStudent = new Student();

    if (OK)
      try {
        byte[] data;
        int number = 0;
        RecordFilter rf = new averageFilter();
        RecordEnumeration re = rs.enumerateRecords(rf, null, false);
        while (re.hasNextElement()) {
          int recordID = re.nextRecordId();
          data = rs.getRecord(recordID);
          aStudent.changeFromByteArray(data);
          result += recordID + "\n" "Name:" + aStudent.getName() "\n"
              + aStudent.getChineseScore() "\n" + aStudent.getEnglishScore() "\n"
              + aStudent.getMathScore() "\n";
          number++;
        }
        result += number;
        aTextBox.setString(result);
      catch (Exception e) {
        aTextBox.setString("Failed");
        try {
          rs.closeRecordStore();
          System.out.println("1.Closed.");
          RecordStore.deleteRecordStore("aRS3");
          System.out.println("delete OK");
        catch (Exception x) {
        }
      finally {
        try {
          if (rs != null)
            rs.closeRecordStore();
          rs.deleteRecordStore("aRS3");
        catch (Exception e) {
        }
      }

    aTextBox.setString(result);
    aTextBox.addCommand(exitCommand);
    aTextBox.setCommandListener(this);
    display.setCurrent(aTextBox);
  }

  public void pauseApp() {
  }

  public void destroyApp(boolean unconditional) {
  }

  public boolean existing(String recordStoreName) {
    boolean existingOrNot = false;
    RecordStore rs = null;
    if (recordStoreName.length() 32)
      return false;
    try {
      rs = RecordStore.openRecordStore(recordStoreName, false);
    catch (RecordStoreNotFoundException e) {
      existingOrNot = false;
    catch (Exception e) {
    finally {
      try {
        rs.closeRecordStore();
      catch (Exception e) {
      }
    }
    return existingOrNot;
  }

  public void commandAction(Command c, Displayable s) {
    destroyApp(false);
    notifyDestroyed();
  }
}

class averageFilter implements RecordFilter {
  public boolean matches(byte[] candidate) {
    DataInputStream student = new DataInputStream(new ByteArrayInputStream(candidate));
    int average = 0;
    try {
      String dummy = student.readUTF();
      average = (student.readInt() + student.readInt() + student.readInt()) 3;

    catch (Exception e) {
    }
    if (average >= 80)
      return true;
    else
      return false;

  }
}

class Student {
  private int ID = -1;

  private String name;

  private int chineseScore;

  private int englishScore;

  private int mathScore;

  public void write(String name, int chineseScore, int englishScore, int mathScore) {
    this.name = name;
    this.chineseScore = chineseScore;
    this.englishScore = englishScore;
    this.mathScore = mathScore;
  }

  public void setRecordID(int ID) {
    this.ID = ID;
  }

  public int getRecordID() {
    return ID;
  }

  public byte[] changeToByteArray() {
    byte[] data = null;

    try {
      ByteArrayOutputStream baos = new ByteArrayOutputStream();
      DataOutputStream dos = new DataOutputStream(baos);
      dos.writeUTF(name);
      dos.writeInt(chineseScore);
      dos.writeInt(englishScore);
      dos.writeInt(mathScore);
      data = baos.toByteArray();

      baos.close();
      dos.close();
    catch (Exception e) {
    }
    return data;
  }

  public void changeFromByteArray(byte[] data) {
    try {
      ByteArrayInputStream bais = new ByteArrayInputStream(data);
      DataInputStream dis = new DataInputStream(bais);

      name = dis.readUTF();
      chineseScore = dis.readInt();
      englishScore = dis.readInt();
      mathScore = dis.readInt();

      bais.close();
      dis.close();
    catch (Exception e) {
    }
  }

  public String getName() {
    return name;
  }

  public int getChineseScore() {
    return chineseScore;
  }

  public int getEnglishScore() {
    return englishScore;
  }

  public int getMathScore() {
    return mathScore;
  }
}
31. 47. RecordStore
31. 47. 1. Load yahoo stock quote
31. 47. 2. Add records to RecordStore
31. 47. 3. delete RecordStore
31. 47. 4. Filter FieldsFilter Fields
31. 47. 5. Get record from RecordStoreGet record from RecordStore
31. 47. 6. Save data to RecordStoreSave data to RecordStore
31. 47. 7. Record MonitorRecord Monitor
31. 47. 8. Retrieve AllRetrieve All
31. 47. 9. Sort FieldsSort Fields
31. 47. 10. Record Enumeration
31. 47. 11. RecordStore read and write
31. 47. 12. Read and write mixed data types with RecordStore
31. 47. 13. Mixed Record Enumeration
31. 47. 14. Sort records in RecordStore
31. 47. 15. Sort Mixed Record DataType
31. 47. 16. Search record in RecordStore
31. 47. 17. Search Mixed Record Data Type
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.