.jar and .jad are for OTA (over the air) downloads.
.alx with a .cod file will allow you to use app loader in DM to install.
First thing you might want to try is to download it from your phones browser. But you say you compiled the jad so... if you download it like this you won't be able to add roms to it...
If you do not have a data plan you can try this. It might be kinda hard, but...
Since you only have the .jar file you will need to use JadMaker to make the .jad file. Here is a download link for the one I use:
Download JADMaker 1.15 - JADMaker creates a JAD file for your .JAR Java Games - Softpedia
Then you will need to take the .jar and .jad file and create the .alx and .cod files. Here is a batch file you can use for that:
Quote:
@echo off
cls
:: get jde location
set jde=
set /p jde=what is the complete path to your Blackberry JDE directory?
echo.
:: get jad and jar locations
set sve=
set /p sve=enter the complete path where your jad and jar files are located:
echo.
:: get the name of the jad and jar files
set jar=
set /p jar=what is the name of your jar file?
echo.
:: copy jad and jar files to the jde directory
xcopy "%sve%\%jar%.jad" "%jde%\bin\"
xcopy "%sve%\%jar%.jar" "%jde%\bin\"
::create the cod files
cd /d "%jde%/bin"
pause
rapc import="%jde%\lib\net_rim_api.jar" codename=%jar% -midlet jad=%jar%.jad %jar%.jar
pause
:: move the cod file to the jad and jar directory
move "%jde%\bin\%jar%.*" "%sve%\"
pause
:: change to the new directory
cd /d %sve%
:: create the new alx file
echo ^<loader version="1.0"^> >%jar%.alx
echo ^<application id="%jar%"^> >>%jar%.alx
echo ^<name^>%jar%^</name^> >>%jar%.alx
echo ^<description^>%jar%^</description^> >>%jar%.alx
echo ^<version^> ^</version^> >>%jar%.alx
echo ^<vendor^> ^</vendor^> >>%jar%.alx
echo ^<copyright^> ^</copyright^> >>%jar%.alx
echo ^<fileset Java="1.0"^> >>%jar%.alx
echo ^<files^>%jar%.cod^</files^> >>%jar%.alx
echo ^</fileset^> >>%jar%.alx
echo ^</application^> >>%jar%.alx
echo ^</loader^> >>%jar%.alx
pause
:end
|
Just copy this text to notepad and save it as filename.bat and run it. Input what it asks for. Let us know what happens. Good luck.