-
此代码是一个j2me视频播放控制程序,其中有滑杆进行控制,代码长度虽小,但很经典....
此代码是一个j2me视频播放控制程序,其中有滑杆进行控制,代码长度虽小,但很经典.-This code is a j2me video player control program, which has the slider control, the code length is small, but very classic.
- 2022-02-13 11:09:32下载
- 积分:1
-
1.显示进度条的用法.
2.刚学j2me是一个不错的实例.
1.显示进度条的用法.
2.刚学j2me是一个不错的实例.-1. The progress bar shows the usage of .2. Just learn j2me is a good example.
- 2022-11-08 00:35:03下载
- 积分:1
-
J2ME的游戏原代码!希望能帮助有需要帮助的师兄弟们!
J2ME的游戏原代码!希望能帮助有需要帮助的师兄弟们!-J2ME game source code! Want to help those in need of help师兄弟们!
- 2022-03-06 12:26:31下载
- 积分:1
-
一个经典的贪吃蛇游戏源码看看吧,相信你会有收获的
一个经典的贪吃蛇游戏源码看看吧,相信你会有收获的-A classic Snake game source code take a look at it, I believe you will harvest
- 2022-03-12 15:08:06下载
- 积分:1
-
shoujikonghaoguolvyuanma
空号过滤程序,手机空号过滤软件介绍说明,专业过滤程序工程源码,手机空号过滤 功能简介:最多可支持200个手机端口,支持导入手机号码段、批量导入号码文件,软件自动检测、保存可用与不可用号码。软件操作简单、方便!(Empty filter program, mobile phone spacing filtering software introduces, indicating that the professional filtration engineering source program, the mobile phone spacing filtering function introduction: up to 200 phone port support, support into the phone number of segments, batch import document number, the software automatically detects, save available and unavailable number. Software operation is simple and convenient!)
- 2015-12-08 09:28:44下载
- 积分:1
-
GetImageSize
it s j2me code to view image in mobile.
- 2009-05-02 23:50:04下载
- 积分:1
-
own use MIDP2. 0 Part of a spate of game results.
自己用MIDP2。0编的一个游戏渐显效果。-own use MIDP2. 0 Part of a spate of game results.
- 2022-06-29 18:28:14下载
- 积分:1
-
src01
可以把公路整条线型参数输入手机中并保存,在野外作业时查询坐标数据。(You can put the entire highway linear parameter input your phone and save the query coordinate data in field operations.)
- 2015-01-28 17:39:40下载
- 积分:1
-
Sweepgame,开发于J2ME, 可以在支持MIDP2.0 and CLDC 1.1 的手机或其他移动设备上使用。...
Sweepgame,开发于J2ME, 可以在支持MIDP2.0 and CLDC 1.1 的手机或其他移动设备上使用。-Sweepgame, developed in J2ME, can support the MIDP2.0 and CLDC 1.1 mobile phone or other mobile device.
- 2022-05-22 22:03:36下载
- 积分: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