-
在NETBEANS环境下,编写J2ME代码,模拟实现手机中的电话簿功能...
在NETBEANS环境下,编写J2ME代码,模拟实现手机中的电话簿功能-NETBEANS environment in the preparation of J2ME code, analog cell phone in the phone book to achieve functional
- 2022-06-15 05:43:47下载
- 积分:1
-
log4j2me是一个J2ME使用log4j风格的来源,J2ME可以登录记录和MOR…
log4j2me 是一个在j2me上使用的log4j风格的源码,可以让j2me上纪录log和调试更加方便-log4j2me is a j2me use log4j style of the source, j2me can log on record and more convenient debugging
- 2022-02-04 18:09:33下载
- 积分:1
-
从BREW系统移植到J2ME系统的移植是用一定难度的,请大家参考.
从BREW系统移植到J2ME系统的移植是用一定难度的,请大家参考.-from BREW system transplanted to the transplant system J2ME is a certain degree of difficulty, please reference.
- 2022-03-30 10:13:13下载
- 积分:1
-
本源代码包括J2ME开发精解 该书的全部章节的示例代码,压缩包不需要密码就能下载,欢迎喜欢J2ME的朋友放心下载...
本源代码包括J2ME开发精解 该书的全部章节的示例代码,压缩包不需要密码就能下载,欢迎喜欢J2ME的朋友放心下载-source code including the development of J2ME solution intensive sections of the book all the sample code, compressed no password will be able to download, welcomed like a friend assured J2ME download
- 2022-08-17 21:22:32下载
- 积分:1
-
这是我第一个j2me手机游戏源代码,还需改进
这是我第一个j2me手机游戏源代码,还需改进-This is my first one j2me mobile phone game source code, we must improve
- 2022-07-22 23:45:25下载
- 积分:1
-
一个基于j2me的经典游戏,已打包,没有密码,可直接下载到手机模拟器上运行。
一个基于j2me的经典游戏,已打包,没有密码,可直接下载到手机模拟器上运行。-one of the classic games, has wrapped up, no password, can be directly downloaded to the phone simulator run.
- 2022-09-15 07:35:03下载
- 积分:1
-
j2me客户端浏览器开源引擎,最简单的ui控制,khtml解析
j2me客户端浏览器开源引擎,最简单的ui控制,khtml解析-j2me client browser open-source engine, the simplest ui controls, khtml parsing
- 2022-02-10 01:13:59下载
- 积分:1
-
J2ME 实现收发短信,一个不错的j2me实例
J2ME 实现收发短信,一个不错的j2me实例-J2ME achieve TX text messaging, a good example j2me
- 2022-02-15 05:01:29下载
- 积分:1
-
此文件是关于手机游戏开发的理论,结合具体的实例展开讲解,易懂,给初学者很大的帮助...
此文件是关于手机游戏开发的理论,结合具体的实例展开讲解,易懂,给初学者很大的帮助-This file is about the basic cell phone game development theory, carried out specific examples to explain, easy to understand
- 2022-02-02 02:11:28下载
- 积分:1
-
java 为图片添加水印 示例
为图片添加水印 【核心代码】 /*** 添加水印* @param imagePath 图片绝对路径* @param watermarkPath 水印图片绝对路径* @param position 水印图片位置* @return 生成水印图片的绝对路径*/public static String addWatermark(String imagePath, String watermarkPath, String position) {logger.info("为图片({})在位置{}添加水印({})", imagePath, position, watermarkPath);if (StringUtils.isNotBlank(imagePath) && StringUtils.isNotBlank(watermarkPath)) {File image = new File(imagePath);File watermark = new File(watermarkPath);Position pos = getPostion(position);if (image.isFile() && image.exists() && watermark.isFile()) {try {BufferedImage bi = ImageIO.read(image);Builder builder = Thumbnails.of(imagePath);BufferedImage watermarkImg = ImageIO.read(watermark);File newWatermark = null;// 原图的宽或高是水印图片宽或高的2倍及以上,则直接打上水印原图;否则缩略水印图片,以原图宽或高的二分之一if (bi.getWidth() / watermarkImg.getWidth()
- 2017-10-13下载
- 积分:1