?? helper.java
字號:
package mobisutra;
import mobisutra.*;
import java.io.InputStream;
import javax.microedition.io.Connector;
public class Helper
{
public Helper()
{
}
public static byte[] ReadByteArray(String s)
throws Exception
{
return ReadByteArray(s, 3000, 0);
}
public static byte[] ReadByteArray(String s, int i, int j)
throws Exception
{
byte abyte0[] = null;
StringBuffer stringbuffer = new StringBuffer();
InputStream inputstream = Connector.openInputStream("resource:" + s);
abyte0 = new byte[i];
inputstream.read(abyte0);
inputstream.close();
return abyte0;
}
static final int MAX_IMAGESIZE = 3000;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -