Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
ImageAssembler.java
Package: PaoPao.rar [view]
Upload User: sh2222
Upload Date: 2009-12-31
Package Size: 84k
Code Size: 1k
Category:
J2ME
Development Platform:
Java
- package paopao;
- import com.nokia.mid.ui.DirectGraphics;
- import com.nokia.mid.ui.DirectUtils;
- import java.io.InputStream;
- import java.io.PrintStream;
- import javax.microedition.lcdui.Image;
- public class ImageAssembler{
- public static Image createMutableImage(String s, int i)
- throws IllegalArgumentException
- {
- byte abyte0[] = new byte[i];
- try
- {
- InputStream inputstream = Runtime.getRuntime().getClass().getResourceAsStream(s);
- inputstream.read(abyte0, 0, i);
- inputstream.close();
- }
- catch(Exception exception)
- {
- throw new IllegalArgumentException("IOException!");
- }
- return DirectUtils.createImage(abyte0, 0, i);
- }
- }