Posts

Showing posts from June, 2010

Featured Post

My first post from iPhone

Image

Converting xml to xhtml using xslt

Image
Hi, As you now now days xlst is very useful in mobile and telecome do1mains . Since mobile screen size is less which doesnot have all the features to disp1lay . Hence XSLT is much powerful in this case . which will solve all the business logic and also sophisticated tools are available with netbeans and eclipse pulgins are also available . So The use of xslt in real time business scenario is essential . I am tryig to give basic idea of the XSLT . xml is file one which xsl will work and parse the nodes based on the condition and displays the html nodes . - which will prase through entire xml start from root node - this will refere attribute value . - gives the value of particular attribute Sample program which I wrote : ******************************* /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package mydbcp; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io....

J2ME Andrioid application development steps

Image
Hi Guys, Today We are going to discuss on j2me application design on Android phones . Before going to the steps I just want to give you more information about Andriod . This is OS developed by google which can run java based applications but need a plug in to convert the jar file to apk file which is compatible with Android phones . Please go through below mentioned book which is really good . I am currently using this book to develop Android Applications . Eclipse will support plugins for Android so you can choose either Netbeans or Eclipse which ever you feel better . But currently I am using Netbeans which bit easy to develop applications on Android . Sample code will be look like this . /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.me.myandroid; import android.app.Activity; import android.os.Bundle; import android.widget.CheckBox; import android.widget.TextView; /** * * @author VENKA...