-
冒泡排序、折中排序,实现排序最快化,达到优化功能
冒泡排序、折中排序,实现排序最快化,达到优化功能-Bubble Sort, compromise, in order to achieve the fastest order, optimize functions
- 2022-03-20 20:57:48下载
- 积分:1
-
J2ME 俄罗斯方块 源代码
用手机模拟器可直接运行
J2ME 俄罗斯方块 源代码
用手机模拟器可直接运行-J2ME Russian box source code using a cell simulator can run
- 2023-05-26 18:45:03下载
- 积分:1
-
KJAVA browser, KJAVA phone support through the browser to visit the website. (An...
KJAVA浏览器,支持KJAVA的手机可以通过该浏览器访问互联网网页。(反编译的代码)-KJAVA browser, KJAVA phone support through the browser to visit the website. (Anti-compiled code)
- 2022-02-26 21:34:35下载
- 积分:1
-
基于j2me的手机游戏,很经典,可直接下载到手机模拟器上运行,没有密码。
基于j2me的手机游戏,很经典,可直接下载到手机模拟器上运行,没有密码。-phone games, classic, can be directly downloaded to the phone simulator run, no password.
- 2023-03-20 11:05:03下载
- 积分:1
-
大富翁手机游戏的源代码。J2me平台运行。eclipse编写,MIDP2.0
大富翁手机游戏的源代码。J2me平台运行。eclipse编写,MIDP2.0-Monopoly mobile game source code. Run J2me platform. eclipse prepared, MIDP2.0
- 2022-05-19 02:46:49下载
- 积分:1
-
J2me 开发 简单的程序。实现页面跳转,用来演示
J2me 开发 简单的程序。实现页面跳转,用来演示-J2me development of simple procedures. The realization of the page Jump to demo
- 2023-04-27 03:00:03下载
- 积分:1
-
J2ME优化压缩PNG文件。这是个J2ME控制台程序,它能剔除PNG文件中的非关键数据段,减少文件大小从而达到压缩图片的目的。而图片的质量并不会受到损失。使用时...
J2ME优化压缩PNG文件。这是个J2ME控制台程序,它能剔除PNG文件中的非关键数据段,减少文件大小从而达到压缩图片的目的。而图片的质量并不会受到损失。使用时候只需在控制台窗口执行jar就可以了。-J2ME optimization of compressed PNG file. This is a J2ME console program, it can exclude PNG files non-critical data segment to reduce the file size so as to achieve the purpose of compressed images. The picture quality and will not suffer loss. Just use the console window when the implementation of the jar on it.
- 2022-10-29 18:35:04下载
- 积分:1
-
撑竿跳体育类J2ME源代码。代码可直接反编译使用。
撑竿跳体育类J2ME源代码。代码可直接反编译使用。-vault Sports J2ME source code. Anti-code compiler can be used directly.
- 2023-01-18 15:50:03下载
- 积分:1
-
从SE的J2ME移植到其他机行中屏幕问题的解决,对移植很有帮助.
从SE的J2ME移植到其他机行中屏幕问题的解决,对移植很有帮助.-SE from the transplanted to other J2ME-line screens to resolve the problem of transplant helpful.
- 2022-03-11 13:02:48下载
- 积分: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