2nd下J2ME安裝研究和啟動方法

2021-05-23 04:30:55 字數 1214 閱讀 3518

(以下方法我在6680和n70上通過測試)

這個過程挺麻煩的

#ifndef __wins__ 

_lit(kmidlpath,"c://system//midlets//");      //for real device

#else

_lit(kmidlpath,"c://logs//");                //for win

#endif

//獲取uids檔案的路徑

cdirscan* ds = cdirscan::newlc(icoeenv->fssession());

trapd(err,ds->setscandatal(kmidlpath,kentryattnormal,esortbyname|eascending,cdirscan::escandowntree));

if (err!=kerrnone) 

cdir* c = null; 

tfilename fullname;

tbuf<100> jarpath;

while(1)

}delete c;

c=null;

}cleanupstack::popanddestroy(ds);

rlog::log(uidspath);    //到這裡能正確得到c:/system/midlets/[10131ab7]/uids

tint filelength;

rfs fs;

rfile file;

fs.connect();

file.open(fs,uidspath,efileread);

file.size(filelength);

rlog::log(_l("filelength"),filelength);

hbufc8* heapbuf = hbufc8::newlc(filelength);

tptr8 uids = heapbuf->des();

file.read(uids,filelength);

rlog::log(uids);

cleanupstack::popanddestroy();//heapbuf

rlog::log(uidbuf); //得到10197d97

return;

tchar itoa(tint aint)

switch(aint)

}void dolaunchl()   //

eclipse 下 j2me 開發環境的配置

首先,你要有eclipseme的外掛程式,到網上搜一下就有了。我用的是eclipseme.feature 1.5.0 site的,這個版本以後,都不能直接將檔案複製到eclipse目錄下就可以了,它要經過eclipse的更新來完成。具體的操作,首先當然要先去down的eclipseme外掛程式了。還...

J2ME和Android的簡單比較

android android activity生命週期 1 oncreate 程式開始初始化的時候呼叫該介面,使用者導航返回到activity的時候也會呼叫該介面。類似於j2me裡面多個canvase displayable 切換。所以activity也類似於displayable。2 onsta...

J2ME中Font和Color的設定

你對j2me中font和color的設定是否了解,這裡和大家簡單分享一下,由於裝置的限制,手機中支援的字型型別很有限。另外同其他類不一樣,我們不能通過newfont 這樣的語句,來建立乙個font例項,因為font類沒有建構函式。j2me中font設定 由於裝置的限制,手機中支援的字型型別很有限。我...