免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1262 | 回复: 0
打印 上一主题 下一主题

Start a personal java on PDA(RX3715) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-05-24 18:11 |只看该作者 |倒序浏览

I. Setup on PC
II. Setup on PDA
III. Setup pointbase on PDA
I. Setup on PC.
1. Install PJEE
    Setup PJEE3_1-win-nonrom.exe to PC default is driver D:pjee3.1
2. Compile *.java file
    javac -bootclasspath d:pjee3.1libclasses.zip -target 1.1 filename.java
3. Run *.java file
    d:pjee3.1inpjava filename
4. if need swing:
    a. Take out Swing1.1.1
    b. Find out javaxswingSwingUtilities.java
    c. Change: [color="#0000cc"]Method m = Class.class.getMethod("getProtectionDomain", null); TO
                     [color="#0000cc"]Method m = Class.class.getMethod("getPackage", null);
[color="#0000cc"]    [color="#000000"]d. javac -deprecation -bootclasspath d:pjee3.1libclasses.zip -classpath swingall.jar;. -target 1.1 -d . SwingUtilities.java
    e. jar uvf swingall.jar javaxswingSwingUtilities.class
    f. rename swingall.jar to swingall_fix.jar
II. Setup on PDA (iPaq Rx 3715 English)
1. copy pjavawince.arm.CAB to PDA
2. Run pjavawince.arm.CAB on PDA
3. if need swing:
copy swingall_fix.jar to Program FilesJavalib
4. Use PHM Registry Editor
    a. Find HKEY_CLASSES_ROOTJava Class FileShellOpenCommand
    b. Change "Program FilesJavainpjava.exe" -file "%1" TO
                   "Program FilesJavainpjava.exe" -classpath "Program FilesJavalibswingall_fix.jar" -file "%1"
5. Now it can run *.class with swing
III. Setup pointbase on PDA (iPaq Rx 3715 English)
1. Download pointbase files.
2. Add pointbasemobileclassespbmobile34EV.jar and pbtools34EV.jar to swingall_fix.jar
3. Create a PBdatabase.java
   
  1. /*
  2. * PBdatabase.java
  3. *
  4. * Created on 22/5/2005, 9:21pm
  5. */
  6. /**
  7. *
  8. * @author  LU
  9. */
  10. import java.sql.*;
  11. public class PBdatabase {
  12.    
  13.     private Connection  m_con;// the database connection object
  14.     private Statement   m_stmt;// the statement object
  15.     private String databaseName;// the database name
  16.    
  17.     public PBdatabase(String databaseName) {
  18.         this.databaseName = databaseName;
  19.     }
  20.    
  21.     public void open() throws SQLException {
  22.         try {
  23.             Class.forName("com.pointbase.jdbc.jdbcUniversalDriver");
  24.             
  25.             m_con = DriverManager.getConnection("jdbc:pointbase:" + databaseName, "public", "public");
  26.             m_stmt = m_con.createStatement();
  27.         }
  28.         catch (SQLException sqlEx) {
  29.             throw sqlEx;
  30.         }
  31.         catch (Exception e) {
  32.             System.err.println(e);
  33.         }
  34.     }
  35.    
  36.     public void close(){
  37.         try {
  38.             m_con.close();
  39.         }
  40.         catch (SQLException e) {
  41.             
  42.         }
  43.     }
  44.    
  45.     public void create(String createString){
  46.         try {
  47.             m_stmt.executeUpdate(createString);
  48.             m_con.commit();
  49.         }
  50.         catch (SQLException e) {
  51.             
  52.         }
  53.     }
  54.    
  55.     public void insert(String insertString) {
  56.         try {
  57.             m_stmt.executeUpdate(insertString);
  58.             m_con.commit();
  59.         }
  60.         catch (SQLException e) {
  61.             
  62.         }
  63.     }
  64.    
  65.     public void update(String updateString) {
  66.         try {
  67.             m_stmt.executeUpdate(updateString);
  68.             m_con.commit();
  69.         }
  70.         catch (SQLException e) {
  71.             
  72.         }
  73.     }
  74.    
  75.     public void delete(String deleteString) {
  76.         try {
  77.             m_stmt.executeUpdate(deleteString);
  78.             m_con.commit();
  79.         }
  80.         catch (SQLException e) {
  81.             
  82.         }
  83.     }
  84.    
  85.     public String select_single(String selectString) {
  86.         String returnString = "";
  87.         try {
  88.             ResultSet rs = m_stmt.executeQuery(selectString);
  89.             ResultSetMetaData rsmd = rs.getMetaData();
  90.             returnString = rs.getString(1);
  91.         }
  92.         catch (SQLException e) {
  93.             
  94.         }
  95.         return returnString;
  96.     }
  97.    
  98.     public String[][] select_array(String selectString, int noRows, int cols) {
  99.         int noCols = 0;
  100.         int rowCounter = 0;
  101.         String returnArray[][] = new String[noRows][cols];
  102.         try {
  103.             ResultSet rs = m_stmt.executeQuery(selectString);
  104.             ResultSetMetaData rsmd = rs.getMetaData();
  105.             noCols = rsmd.getColumnCount();
  106.             //String returnArray[][] = new String[noRows][noCols];
  107.             while(rs.next()) {
  108.                 for (int c=1; c}
复制代码
4. Compile
    javac -bootclasspath d:pjee3.1libclasses.zip -classpath d:pjee3.1libswingall_fix.jar -target 1.1 PBdatabase.java
5. use PBdatabase class connecte with Pointbase


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/2871/showart_27545.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP