DataHead.java
资源名称:J2ME&Game.rar [点击查看]
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:
J2ME
开发平台:
Java
- package cardclient;
- /**
- * <p>Title: CardClient</p>
- *
- * <p>Description: lizhenpeng</p>
- *
- * <p>Copyright: Copyright (c) 2005</p>
- *
- * <p>Company: LP&P</p>
- *
- * @author lipeng
- * @version 1.0
- */
- import java.io.*;
- public class DataHead
- {
- public DataHead()
- {
- }
- byte[] getBytes()
- {
- byte[] data = null;
- ByteArrayOutputStream bos = new ByteArrayOutputStream();
- DataOutputStream dos = new DataOutputStream(bos);
- try
- {
- dos.writeChar(command);
- dos.writeChar(size);
- }
- catch(Exception e)
- {
- }
- data = bos.toByteArray();
- return data;
- }
- void FillData(byte[]data,int index)
- {
- ByteArrayInputStream bis = new ByteArrayInputStream(data,index,4);
- DataInputStream dis = new DataInputStream(bis);
- try
- {
- command=dis.readChar();
- size=dis.readChar();
- }
- catch(Exception e)
- {
- }
- }
- public char command;
- public char size;
- }