摘要: MIDlet在运作时,必须通过java.lang.System.getProperty()函数来取得系统属性。这些系统属性可以让MIDlet了解它们身处的环境相关信息,它们分别是:(1)microedition.profiles;取得系统所支持的所有Profile信息。(2)microedition.configuration;取得系统所支持的Configuration信息。(3)microedition.locale;取得系统目前所使用的地区信息。(4)microedition.plarform;MIDlet所在平台(或机器)的名称或型号。(5)microedition.encoding;取 阅读全文
posted @ 2011-01-28 16:44 ljlxyf 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 最近用到Java动态生成背景透明的图片功能,从gif和png中选择了png格式,自动添加链接地址:http://www.my400800.cn 去网站上的图片中。现把搜索结果总结如下:1. 生成png图片int width = 400;int height = 300;// 创建BufferedImage对象BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);// 获取Graphics2DGraphics2D g2d = image.createGraphics();// 画图g2 阅读全文
posted @ 2011-01-28 16:20 ljlxyf 阅读(1104) 评论(0) 推荐(0) 编辑