If I install a program in through GC's Java app, where does it exactly get installed to?
Related
how do you add games (java) or whatever.. ??
Orbit 2 is an PPC, and ALL PPC can insert a geme or program written in ARM code (PPC code) so you can not insert Java (that is for Smartphone or Symbian), PPC have a windows mobile code.
I hope it's all correct that I've write
thefamous said:
Orbit 2 is an PPC, and ALL PPC can insert a geme or program written in ARM code (PPC code) so you can not insert Java (that is for Smartphone or Symbian), PPC have a windows mobile code.
I hope it's all correct that I've write
Click to expand...
Click to collapse
What??????!!!!!!!!!!!!
Havent anyone heard of MIDlet manager?? Just put this program in and run JAR/JAD stuff, its simple.
HTC Version comes with Esmertec Java installed.
rickgillyon said:
HTC Version comes with Esmertec Java installed.
Click to expand...
Click to collapse
The Xda orbit2 has Esmertec Java preinstalled too. Its no problem to install java apps.
Lars
Just open your JAVA emulator go to the programs, select JAVA, app. opens, go to menu, create new folder, give the name of the game. you see the folder on display, go again to menu install ---> local files and select your jar file and finished....the java file will be loaded.
Hi.
I tried running some java application on my htc touch cruise, I clicked the .jar file, it got installed and I was able to run it. I played with this a bit and found out that I have that (esmertec?) midlet manager or something installed. My problems is that I can't figure out how to run this manager... There is no "java" or "midlet manager" or something related in "programs" folder. But the manger is installed and works when I click .jar files... Seems like my link to the maneger got deleted or something... how can I recreate the link to the manager ?
And another weird thing is all the time I install some java app, it always asks me "do you want to quit to wap browser?" and if I click yes it's just exits.
Hi, i just downloaded the new Opera Mini 4.1 (www.mini.opera.com/beta) on my HTC Artemis and when i clicked on the "download" it said the file already exists. I didnt choose where it downloaded to... so, does anyone know where the install files are stored?
Cheers,
It'll install in your Java environment ...check in Start>Program> Java or Esmertec Java....open that then you can see the installed application.
By default they go to \Windows\Appdb\ , at least on my WM6.1 Prophet rom...
yes or it simply goes in my documents folder in the device
hello
when i run a java app. it showing big. and over following out of the screen.
info i could get is
Esmertc jbed build id: 20080704.5.1
like to know what can i install or do to get it smaller. what other app are there to use to run jad, jar files.
Hello,
I'm currently in the need to code a C++ app under Windows Mobile 6 that starts an installed Java app. I already hoped that call system("java java_app") might work, but my C++ compiler (VS 2005) does not even know system() function. And I don't think it would work this way: to install a Java app, I start a .jar file, and then, I can start the app manually via start menu under Start -> Program Files -> Tools -> Java, where I can select from all installed Java apps, and obviously, the installation does not create .jar or. class files anywhere in the file system. The Java runtime environment on my phone (HTC Diamond) is an Esmertec Jbed.
Thanks for any help.
As far as I could find out, Java apps under Jbed JVM can be started from command line by
\windows\jbed.exe -run sX_
where X=0,1,2,3,... ist the index of the desired app in the list of installed Java apps. So, Java app can be started from C++ programm using ShellExecuteEx(), filling the lpFile member of the SHELLEXECUTEINFO parameter with "\\windows\\jbed.exe" and lpParameters member with "-run sX_".
Very nice, so far, however, there are two troubles remaining:
- the index X of the desired Java app depends on the sequence, in which the Java apps have been installed
- the Java midlets have a hierarchical structure. A midlet might contain several sub-midlets, but only the highest-level midlets are accessable by the s-index
Well, I think the hierarchical structure is a solvable problem, the desired midlet can be installed as a top-level midlet. But still the index problem. Is there maybe a registry entry that maps midlets to indices?
I found the solution!
Jbed stores for each installed midlet a sX_.jah, sX_.obj and a sX_suite.utf file in \windows\appdb folder. The .jah and .obj are binary files, but the .utf files are readable text files that contain some information of the corresponding midlet, that enables one to identify midlet from index X. So, all I need to do in my C++ app is to open the .utf files subsequently and to check if I find the information that identifies the desired midlet.