📄 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 + -