-
博客系统
JSP+SSH博客系统,非常好的算法和程序,适合初学者学习,需要的可以下载看看!(Very good algorithm and program, suitable for beginners to learn, need to download to see.)
- 2018-04-22 20:59:10下载
- 积分:1
-
手机游戏开发大全,本文件包含很多手机游戏的源代码,可供初学者参考使用。...
- 2023-04-05 10:05:04下载
- 积分:1
-
手机上Java小游戏――深水炸弹,类似与PC机上的同名游戏,很不错的。...
手机上Java小游戏――深水炸弹,类似与PC机上的同名游戏,很不错的。-phone Java games-- depth charges, and similar PC game of the same name, is very good.
- 2022-05-13 16:12:17下载
- 积分: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
-
- 2022-03-24 02:43:14下载
- 积分:1
-
GetImageSize
it s j2me code to view image in mobile.
- 2009-05-02 23:50:04下载
- 积分:1
-
一个俄罗斯方块的代码,对于j2me的初学者比较适合
一个俄罗斯方块的代码,对于j2me的初学者比较适合-a Russian box code, j2me more suitable for beginners
- 2022-07-01 16:59:42下载
- 积分:1
-
JAVA校园论坛系统源码(含数据库脚本)
注册,登录,发帖,点赞,搜索,评论,后台管理等功能
- 2020-02-11下载
- 积分:1
-
3Ddemo, 开发于J2ME, 可以在支持MIDP2.0 and CLDC 1.1 的手机或其他移动设备上使用。...
3Ddemo, 开发于J2ME, 可以在支持MIDP2.0 and CLDC 1.1 的手机或其他移动设备上使用。-3Ddemo, developed in J2ME, can support the MIDP2.0 and CLDC 1.1 mobile phone or other mobile device.
- 2022-11-09 08:05:03下载
- 积分: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