上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 68 下一页
  2009年3月30日
摘要: Downloading phoneME Feature Software Source Code (MR4)The phoneME Feature software project provides two ways for you to access the source code: * Download the required phoneME Feature software zip archive files. These zip archive files include: o The phoneME Feature download source file, p... 阅读全文
posted @ 2009-03-30 15:47 YangJin 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Getting Started with phoneME Feature Software (MR4)This guide contains the following sections: * Downloading phoneME Feature Software Source Code * Before You Begin * Setting Up Your Build Environment * Building the JavaCall Porting Layer * Building a PCSL Reference Port * Building a CL... 阅读全文
posted @ 2009-03-30 15:44 YangJin 阅读(125) 评论(0) 推荐(0) 编辑
摘要: NetBeans建立CLDC/MIDP应用程序一、NetBeans建立CLDC/MIDP应用程序NetBeans IDE使用同样的Java编译器来建立CLDC应用程序,其背后使用了-bootpathoption选项来重定位编译器使用不同的基础类。建立选项——尤其是optimization(优化)和obfuscation(混淆),在JavaME设备中扮演了重要角色。原因如下:1)商业应用,保护知识产权。2)优化和混淆能使得应用程序更小,应用传输到目标平台所耗时间更少,占用目标硬件的内存更小。因为混淆对类名、方法名和成员变量等使用更简短的名字进行了重命名;并删除了未使用的类、方法和成员变量。Net 阅读全文
posted @ 2009-03-30 15:42 YangJin 阅读(144) 评论(0) 推荐(0) 编辑
  2009年3月29日
摘要: phoneME Feature MR4介绍phoneME Feature Software (MR4)Release DescriptionphoneME™ Feature software (MR4) adds new capabilities and features to previous releases, as outlined in the feature list below. As always, we look forward to active community participation as this development effort proceeds.Featu 阅读全文
posted @ 2009-03-29 11:14 YangJin 阅读(163) 评论(0) 推荐(0) 编辑
  2009年3月28日
摘要: 建立CLDC Reference Port (MR4)CLDC software is the OSS community version of Sun Microsystems' Connected Limited Device Configuration HotSpot Implementation virtual machine.This document has the following sections: * Building CLDC Software on a Windows x86 Build Platform * Building CLDC Documentatio 阅读全文
posted @ 2009-03-28 15:43 YangJin 阅读(161) 评论(0) 推荐(0) 编辑
  2009年3月26日
摘要: VC6安装错误——Error Launching acmboot.exe因项目需要,我需要安装Microsoft Visual C++ Professional Version 6 SP5。但是在安装时运行安装目录下的setup.exe,出现Error Launching acmboot.exe,无论如何都进行不下去。我以为是需要安装光盘的问题,因为以前每次安装都是在光盘上进行的,装了Daemon,镜像安装文件,还是不行。搜索解决方案,看到一个帖子所说:(1)在安装目录的setup目录下,复制VS98ENT.STF为ACMSETUP.STF文件;(2)把setup目录下的所有文件复制到安装目录 阅读全文
posted @ 2009-03-26 16:07 YangJin 阅读(213) 评论(0) 推荐(0) 编辑
  2009年3月23日
摘要: CLDC 1.1一、CLDCCLDC 1.1是JCP规范JSR-30和JSR-139的结果,面向资源受限的消费电子设备。CLDC特征如下:1)设备要求至少160-192KB的内存空间。2)设备电力有限,通常是电池供电的设备。3)可连接某些网络,通常是无线网络、间断连接和带宽有限(通常是9.6Kbps或更少)。4)用户界面复杂程度各不相同,甚至可以没有用户界面。CLDC可用于蜂窝电话、寻呼机、PDA、袖珍助手( Pocket Organizer )、家庭设备、销售终端等。但并非所有的设备都支持CLDC。CLDC参考实现运行在SUN公司的KVM实现上,并作为其的一部分提供。注意:CLDC通常以建立 阅读全文
posted @ 2009-03-23 11:41 YangJin 阅读(229) 评论(0) 推荐(0) 编辑
  2009年3月20日
摘要: GTK+界面设计先看一段例程:——————————————————————————————#include<gtk/gtk.h>int main(int argc, char *argv[]){ GtkWidget *window; /* Initialize GTK+ and all of its supporting libraries.*/ gtk_init(&argc, &argv); /* Create a new window, give it a title and display it to the user. */ ... 阅读全文
posted @ 2009-03-20 14:07 YangJin 阅读(412) 评论(0) 推荐(0) 编辑
摘要: Windows下安装GTK+的最佳攻略本文的GTK+版本为2.16.0前提条件:Windows上已安装Cygwin(安装方法不在本文中叙述)在Windows平台上安装GTK+,方法很多,最简单的方法是采用一体包进行安装,步骤如下:1)下载gtk+-bundle_2.16.0-20090317_win32.zip地址:http://ftp.gnome.org/pub/gnome/binaries/win32/gtk+/2.16/gtk+-bundle_2.16.0-20090317_win32.zip2)解压缩到指定目录我解压到C:/GTK3)设置环境变量PATH“我的电脑”--右键“属性”-- 阅读全文
posted @ 2009-03-20 10:48 YangJin 阅读(1020) 评论(0) 推荐(0) 编辑
  2009年3月9日
摘要: ANTLR v3ANTLR是一个语法、语义解析的好工具。我两年没用这个工具了,今天意外的发现它变化很大。06年我曾经用ANTLR v2做过某个项目,之后再也没有用过。因为一般的解析、转换,直接用正则表达式也可搞定,复杂一点的就加上一些算法。ANTLR v3的最新版本是3.1.2,围绕它的第三方工具也很多。有:1)ANTLRWorks版本1.2.32)ANTLR IDE版本1.3.03)Edgar Espina4)AntlrDT看来我得抱着学习的态度重新看看,ANTLR v3究竟改进了多少。先看ANTLR IDE-1.3.0特征:1)支持ANTLR 3.0.x/3.1.x2)ANTLR Laun 阅读全文
posted @ 2009-03-09 21:56 YangJin 阅读(239) 评论(0) 推荐(0) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 68 下一页