-
MyCartoon
一款JAVA小游戏,供学习参考,里面提供了J2ME几乎所有经典操作.(A JAVA game for learning the reference, which provides almost all the classic operation of J2ME.)
- 2007-08-10 14:17:02下载
- 积分:1
-
客户端的游戏棋中国
中国象棋(中国:象棋, p Xiàngqí),有时称为中国象棋,两名球员是 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-19 00:43:27下载
- 积分:1
-
Javapda both the traditional code, I have not seen, but it should be simplified...
Javapda繁体版代码, 这个我也没有看过,不过应该和那个简体的差不多,但还是有区别的-Javapda both the traditional code, I have not seen, but it should be simplified and that the same, but there are differences
- 2023-05-23 06:10:04下载
- 积分:1
-
jsp网页中的过滤器,保持原样输入输出,很不错
jsp网页中的过滤器,保持原样输入输出,很不错-jsp page filters, input and output intact, very good
- 2023-02-10 09:45:03下载
- 积分:1
-
Dice Roller 这个软件准许用户产生骰子滚动。一个用户通过把骰子加到卷饼线上,结合对这些结果的加减法完成这。当卷饼线被创造了的时候用户可以产生以这条线为...
Dice Roller 这个软件准许用户产生骰子滚动。一个用户通过把骰子加到卷饼线上,结合对这些结果的加减法完成这。当卷饼线被创造了的时候用户可以产生以这条线为依据的一个随便的数字。
而 J2MEDice 就是 Dice Roller 在 Java 手机上实现的版本。-Dice Roller allow the software user-generated rolling dice. A user is added through the dice online卷饼light of these results to complete the addition and subtraction. When卷饼lines were created when the user can generate in this line is based on a random number. Dice Roller and J2MEDice is realized in the Java version of the phone.
- 2022-12-30 04:20:03下载
- 积分:1
-
这是一个javaME实现的猜数字手机游戏,有兴趣可以看一下.
这是一个javaME实现的猜数字手机游戏,有兴趣可以看一下.-This is a Java ME mobile games to achieve猜数字are interested can look at.
- 2022-02-16 03:36:51下载
- 积分:1
-
Am_lich
am lich, vietnamese-china-indonesian-korean-japan calendar
- 2009-06-04 02:42:00下载
- 积分:1
-
J2ME初学者到专业人士的电子书
j2me beginners to professionals ebook-j2me beginners to professionals ebook
- 2022-07-21 23:48:43下载
- 积分:1
-
J2ME 中文api以及应用
J2ME 中文api以及应用
J2ME 中文api以及应用
J2ME 中文api以及应用
-Chinese api as well as J2ME applications and J2ME applications in Chinese api
- 2022-12-29 23:00:04下载
- 积分: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