搜索记录数据类型 : RecordStore « 基于J2ME « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » 基于J2ME » RecordStore 
31. 47. 17. 搜索记录数据类型
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;

import javax.microedition.lcdui.Alert;
import javax.microedition.lcdui.AlertType;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.midlet.MIDlet;
import javax.microedition.rms.RecordEnumeration;
import javax.microedition.rms.RecordFilter;
import javax.microedition.rms.RecordStore;

public class J2MESearchMixedRecordDataTypeExample extends MIDlet implements CommandListener {
  private Display display;

  private Alert alert;

  private Form form new Form("Mixed RecordEnumeration");

  private Command exit = new Command("Exit", Command.SCREEN, 1);

  private Command start = new Command("Start", Command.SCREEN, 1);

  private RecordStore recordstore = null;

  private RecordEnumeration recordEnumeration = null;

  private Filter filter = null;

  public J2MESearchMixedRecordDataTypeExample() {
    display = Display.getDisplay(this);
    form.addCommand(exit);
    form.addCommand(start);
    form.setCommandListener(this);
  }

  public void startApp() {
    display.setCurrent(form);
  }

  public void pauseApp() {
  }

  public void destroyApp(boolean unconditional) {
  }

  public void commandAction(Command command, Displayable displayable) {
    if (command == exit) {
      destroyApp(true);
      notifyDestroyed();
    else if (command == start) {
      try {
        recordstore = RecordStore.openRecordStore("myRecordStore"true);
        byte[] outputRecord;
        String outputString[] "A""B""M" };
        int outputInteger[] 1510};
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        DataOutputStream outputDataStream = new DataOutputStream(outputStream);
        for (int x = 0; x < 3; x++) {
          outputDataStream.writeUTF(outputString[x]);
          outputDataStream.writeInt(outputInteger[x]);
          outputDataStream.flush();
          outputRecord = outputStream.toByteArray();
          recordstore.addRecord(outputRecord, 0, outputRecord.length);
          outputStream.reset();
        }
        outputStream.close();
        outputDataStream.close();
        String inputString;
        byte[] byteInputData = new byte[300];
        ByteArrayInputStream inputStream = new ByteArrayInputStream(byteInputData);
        DataInputStream inputDataStream = new DataInputStream(inputStream);
        if (recordstore.getNumRecords() 0) {
          filter = new Filter("Mary");
          recordEnumeration = recordstore.enumerateRecords(filter, null, false);
          while (recordEnumeration.hasNextElement()) {
            recordstore.getRecord(recordEnumeration.nextRecordId(), byteInputData, 0);
            inputString = inputDataStream.readUTF() " " + inputDataStream.readInt();
            alert = new Alert("Reading", inputString, null, AlertType.WARNING);
            alert.setTimeout(Alert.FOREVER);
            display.setCurrent(alert);
          }
        }
        inputStream.close();
        recordstore.closeRecordStore();
        if (RecordStore.listRecordStores() != null) {
          RecordStore.deleteRecordStore("myRecordStore");
          filter.filterClose();
          recordEnumeration.destroy();
        }
      catch (Exception error) {
        alert = new Alert("Error Removing", error.toString(), null, AlertType.WARNING);
        alert.setTimeout(Alert.FOREVER);
        display.setCurrent(alert);
      }
    }
  }
}

class Filter implements RecordFilter {
  private String search = null;

  private ByteArrayInputStream inputstream = null;

  private DataInputStream datainputstream = null;

  public Filter(String searchcriteria) {
    search = searchcriteria;
  }

  public boolean matches(byte[] suspect) {
    String string = null;
    try {
      inputstream = new ByteArrayInputStream(suspect);
      datainputstream = new DataInputStream(inputstream);
      string = datainputstream.readUTF();
    catch (Exception error) {
      return false;
    }
    if (string != null && string.indexOf(search!= -1)
      return true;
    else
      return false;
  }

  public void filterClose() {
    try {
      if (inputstream != null) {
        inputstream.close();
      }
      if (datainputstream != null) {
        datainputstream.close();
      }
    catch (Exception error) {
    }
  }
}
31. 47. RecordStore
31. 47. 1. 加载雅虎股票报价
31. 47. 2. 添加记录RecordStore
31. 47. 3. 删除RecordStore
31. 47. 4. 过滤字段过滤字段
31. 47. 5. 从RecordStore获取记录从RecordStore获取记录
31. 47. 6. 保存数据RecordStore保存数据RecordStore
31. 47. 7. 记录监控记录监控
31. 47. 8. 检索所有检索所有
31. 47. 9. 排序字段排序字段
31. 47. 10. 记录计数
31. 47. 11. RecordStore读写
31. 47. 12. 读写混合数据类型与RecordStore
31. 47. 13. 记录计数
31. 47. 14. 排序记录RecordStore
31. 47. 15. 排序记录数据类型
31. 47. 16. 搜索记录RecordStore
31. 47. 17. 搜索记录数据类型
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.