⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imagetools.java

📁 类似于推箱子的手机游戏源码
💻 JAVA
字号:
import javax.microedition.lcdui.Image;
/*
 * ImageTools.java
 *
 * Created on 2007年10月20日, 下午9:13
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

/**
 *
 * @author liang
 */
public class ImageTools {
    
    /** Creates a new instance of ImageTools */
     public static Image createImage(String filename){
      Image image = null;
      try{
          image = Image.createImage(filename);
      }catch(java.io.IOException e){}
      return image;
  }
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -