I am not able to build my application via Ant build.xml file when I am using Properties file in my app. Can anyone tell me how to use properties file in j2me?
eg ApplicationConfig.properties file
according to this post in nokia forum, .properties files are not supported in J2ME.
Related
Please guide me to get the required jar files to use <rich:columns>. I have the following RichFaces jar files.
richfaces-components-api-4.3.7.jar
richfaces-components-ui-4.3.7.jar
richfaces-core-api-4.3.7.jar
richfaces-core-impl-4.3.7.jar
But not able to get the <rich:columns>. Kindly provide the link to download the jar files.
Note: I have opened the classes in the jar files, but I am able to see only AbstractColumn.class and AbstractColumnGroup.class files. No files related to AbstractColumns.class
<rich:columns> is a component from RichFaces 3.x, it is not implemented in 4.x. If you need to create columns dynamically use <c:forEach>.
I have requirement to attach a doc file or a .rtf file with my project source code as a resource.
I want to invoke it on application installation time after saving permission.
I am working on a backgroung application not on a Ui application.
I dont have no idea about how to attach these files with source code and use them.
You can treat these files as a resource to the project and place them in the resource folder and package the project.
Thanks
Naveen M
Hi friends am just stuck up with this issue
I have a requirement for a project which has to support multiple versioning of the application.. i searched everywhere and found that we can do that by using ant script ....i have no idea how to make a build.xml in my existing project and how to change my proj .apk file name automatically .... worst part i have to fetch the new name of the apk from another XML file inside my project folder please can anybody help me em running short of time ....
I created my first Hello world project for BlackBerry and following files were created in the deliverables folder:
- HelloWorld.cod
- HelloWorld.cso
- HellowWorld.debug
- HelloWorld.jad
- HelloWorld.jar
- HelloWorld.rapc
What is the purpose of each of these files? I know at least that the jar file must be deployed as a mobile application. But what about all other files?
The .cod file is basically BlackBerry's proprietary version of the .jar file. (This is usually the version downloaded from the App Store.)
The .cso file is a helper file used when signing the application. (It says which keys are needed.)
The .debug file is a helper file used when running the application in the debugger.
The .jad file describes the application to help the device know if it's compatible. (If you were downloading onto a BlackBerry from a website instead of the App Store, this is the file you'd point your link at, which would contain the path to the cod/jar.)
The .jar file is the main application file for MIDP, which is sort of a generalised mobile java runtime environment.
The .rapc is a helper file used by the BlackBerry JDE when it's compiling/building the project.
i a developing blackberry aplication using eclipse can any one tell where to find the following library
package com.rim.samples.docs.notifications;
i have downloaded it from blackberry site but i dont know how to use it
com.rim.samples.docs namespace is common for samples BlackBerry Application Developer Guide.
On the other hand, "package" token defines the packege namespace, not the import.
If you have downloaded code and post it to namespace with other name, you may have trouble to compile it. Resolve it in two ways:
1. if your code file is placed directly in project src folder, simply remove
package com.rim.samples.docs.notifications;
from code, this will set namespace to default.
2. in project src folder create folder "com\rim\samples\docs\notifications" and move file to folder "notifications".