02 2011 档案

摘要:代码:import android.app.Activity;import android.os.Bundle;import android.widget.TextView;public class ActivityMain extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layou 阅读全文
posted @ 2011-02-21 21:39 jhtchina 阅读(195) 评论(0) 推荐(0)
摘要:From: http://www.eoeandroid.com/thread-51506-1-1.html1、Q:什么是Android?  A:Android一词的本义指“机器人”,同时也是Google于2007年11月5日宣布的基于Linux平台的开源手机操作系统的名称,该平台由操作系统、中间件、用户界面和应用软件组成,号称是首个为移动终端打造的真正开放和完整的移动软件。简单来说是个开源的手机操纵系统。  2、Q:Android就业前景  A:Android是Google开发的基于Linux平台的开源移动操作系统。它包括操作系统、用户界面和应用程序----移动电话工作 阅读全文
posted @ 2011-02-21 10:30 jhtchina 阅读(189) 评论(0) 推荐(0)
摘要:/** To change this template, choose Tools | Templates* and open the template in the editor.*/package hello;import javax.microedition.lcdui.*;import javax.microedition.midlet.*;/*** @author Administrator ItemStateListener 事件处理*/public class ItemStateListenerDemo extends MIDlet implements CommandListe 阅读全文
posted @ 2011-02-20 17:16 jhtchina 阅读(268) 评论(0) 推荐(0)
摘要:/** To change this template, choose Tools | Templates* and open the template in the editor.*/package hello;import javax.microedition.lcdui.*;import javax.microedition.midlet.*;import java.io.*;/*** @author Administrator*/public class ImageItemDemo extends MIDlet implements CommandListener{ private D 阅读全文
posted @ 2011-02-20 16:37 jhtchina 阅读(185) 评论(0) 推荐(0)
摘要:/** To change this template, choose Tools | Templates* and open the template in the editor.*/package hello;import javax.microedition.midlet.MIDlet;import javax.microedition.midlet.MIDletStateChangeException;import javax.microedition.io.*;import javax.microedition.lcdui.*;import javax.microedition.rm 阅读全文
posted @ 2011-02-20 16:32 jhtchina 阅读(316) 评论(0) 推荐(0)
摘要:《ADO.NET 程序设计》期终试卷班级: 姓名: 学号: 成绩: 一、创建数据库 数据库名称是jsjyy09355 创建表,表名是你的stu_学号例如:stu_2009010219 表结构:ID int 自增1 ,主键szjm _name 用户名 可变字符串 长度:50szjm _ykt 一卡通号码 可变字符串 长度:30 szjm _PassWord 密码 可变字符串 长度:30 szjm _Class 班级可变字符串 长度:50(1) 请写出建表的T-SQL语句, CREATE TABLE [stu_0907013401] ( [ID] [int] IDENTITY (1, 1) NOT 阅读全文
posted @ 2011-02-20 15:53 jhtchina 阅读(504) 评论(0) 推荐(0)
摘要:《C# 程序设计》期终试卷 <A卷>班级: 姓名: 学号: 成绩: 一、选择题(15×1分=15分)1、Visual Studio 2005运行在.Net Framework 平台下,请选择需要的开发框架版本( B )。A. .Net Framework 1.0 B. Net Framework 2.0 C. Net Framework 3.0 D. Net Framework 4.02、下列哪一个不是面向对象编程的特征( C )。A.继承 B.封装 C.接口 D. 多态3、布尔类型中有TRUE和FALSE两种类型,有如下代码bool b1=true,b2 = false 阅读全文
posted @ 2011-02-20 15:45 jhtchina 阅读(4648) 评论(0) 推荐(1)
摘要:用户自定义控件[代码] 阅读全文
posted @ 2011-02-20 15:15 jhtchina 阅读(277) 评论(0) 推荐(0)
摘要:MIDP 高级用户界面设计1 高级用户界面组件全部定义在javax.microedition.lcduijavax.microedition.lcduijavax.microedition.包中。2 高级屏幕对象(代码在NetBeans下面调试)(1)第一个J2ME程序代码 /** To change this template, choose Tools | Templates* and open the template in the editor.*/package hello;import javax.microedition.midlet.*;import javax.microed 阅读全文
posted @ 2011-02-11 12:00 jhtchina 阅读(719) 评论(0) 推荐(0)