1:IO读写
因为J2ME只支持有限的几个IO类,要用这几个类满足自己的需求确实不容易。
try
{
InputStream is = new Object().getClass().getResourceAsStream("/52.txt");
ByteArrayOutputStream baos = new ByteArrayOutputStream(1024);
byte[] bytes = new byte[128];
int size;
while( (size = is.read(bytes)) != -1 ){
baos.write(bytes, 0, size);
}
data = baos.toByteArray();
iSize = data.length;
contentCan = new contentCanvas(new String(data));
is.close();
is = null;
baos.close();
baos = null;
}
catch (Exception e)
{
e.printStackTrace();
}
2:字符串转换成整数或其它primitive类型
image_1_num = Integer.parseInt(str3.substring(0,str3.indexOf("-")));
image_2_num = Integer.parseInt(str3.substring(str3.indexOf("-")+1));
用了无数次了,但每次还是忘记。
3:ChoiceGroup的一个小问题
看API文档
public ChoiceGroup(String label, int choiceType, String[] stringElements, Image[] imageElements)
-
Creates a new
ChoiceGroup, specifying its title, the type of theChoiceGroup, and an array ofStringsandImagesto be used as its initial contents.The type must be one of
EXCLUSIVE,MULTIPLE, orPOPUP. TheIMPLICITtype is not allowed forChoiceGroup.The
stringElementsarray must be non-null and every array element must also be non-null. The length of thestringElementsarray determines the number of elements in theChoiceGroup. TheimageElementsarray may benullto indicate that theChoiceGroupelements have no images. If theimageElementsarray is non-null, it must be the same length as thestringElementsarray. Individual elements of theimageElementsarray may benullin order to indicate the absence of an image for the correspondingChoiceGroupelement. Non-null elements of theimageElementsarray may refer to mutable or immutable images. -
有以下问题要澄清:
-
1:第二个参数类型只能为EXCLUSIVE,
MULTIPLE, orPOPUP,IMPLICIT 不被支持,这点和List不同。 -
2:第三个参数不能为null。 -
3:第四个参数可以为null。 -
但是不知道为什么,在我的开发中,始终无法用POPUP类型,Eclipse老提示无法解析此类型。
Trackback: http://tb.blog.youkuaiyun.com/TrackBack.aspx?PostId=1033616
本文介绍了J2ME环境下进行文件IO读写的实现方法,并提供了字符串转换为整数等primitive类型的示例代码。此外,还探讨了ChoiceGroup控件的正确使用方式及其限制。
3137

被折叠的 条评论
为什么被折叠?



