Oka common error ekak mallie
Pena widiyata Driver eka 32 bit. Ekko 64 bit driver eka hoyala dapan.
Uba wada karanne 64 bit JDK ekakada? ehema nam 32 bit JDK ekak install karala classpath hadala. Project eka eken build karala balapan. oka hari yanawaa.


mulin empty project ekak aragena oka witarak run karala balapan. oke contact us walata mail ekak damath eke un help karanawa machan. mama podi example ekak set unoth ewanan.eke tyana code eka khmda ape java class ekata daagnne,
Meka balpn. Tute ekak nam danne na kollo
Code:https://image-store.slidesharecdn.com/6cd621ba-3195-4a2c-88cc-4d952efb5f05-medium.jpeg



මම IOS කරන්න පටන් ගත්ත swift වලින් තමයි කරන්නේ. කෙල උනොත් උබලා ඉන්නවනේ


මම IOS කරන්න පටන් ගත්ත swift වලින් තමයි කරන්නේ. කෙල උනොත් උබලා ඉන්නවනේ





නෑ..![]()
![]()
![]()


pay කරන්න ඹනේ නැද්දමම IOS කරන්න පටන් ගත්ත swift වලින් තමයි කරන්නේ. කෙල උනොත් උබලා ඉන්නවනේ

bump matath denaganna ona banJava walin fingerprint matching krnnee khmadoo![]()
Java walin fingerprint matching krnnee khmadoo![]()
http://sourceforge.net/projects/sourceafis/bump matath denaganna ona ban
class CLADemo1{
public static void main(String args[]){
try{
String name=args[0];
float price=Float.parseFloat(args[1]);
float VAT=Float.parseFloat(args[2]);
float Total=price+VAT;
System.out.println(name +" : " + Total);
}catch(ArrayIndexOutOfBoundsException e){
System.out.println("Incorrect usage!");
}catch(NumberFormatException e){
System.out.println("Invalid number " + e.getMessage());
}
}
}
/**
*class : Cube
*Author : Kanishka Dilshan
*Purpose: Demonstrate inheritance in Java
*Blog : http://javaxclass.blogspot.com
*/
class Cube {
protected int length;
protected int width;
protected int height;
public Cube(int l,int w,int h){
length=l;
width=w;
height=h;
}
public void setLength(int l){
length=l;
}
public void setWidth(int w){
width=w;
}
public void setHeight(int h){
width=h;
}
public int getVolume(){
return(length*width*height);
}
public void showInfo(){
System.out.println("Length \t:"+this.length);
System.out.println("Width \t:"+this.width);
System.out.println("Height \t:"+this.height);
System.out.println("Volume \t:"+getVolume());
}
}
/**
*class : ColorCube
*Author : Kanishka Dilshan
*Purpose: Demonstrate inheritance in Java
*Blog : http://javaxclass.blogspot.com
*/
class ColorCube extends Cube {
String color;
public ColorCube(int l,int w,int h,String color){
//constructing the parent
super(l,w,h);
this.color=color;
}
public void setColor(String color){
this.color=color;
}
public void showInfo(){
super.showInfo();
System.out.println("Color \t:"+this.color);
}
}
/**
*class : InheritanceDemo
*Author : Kanishka Dilshan
*Purpose: Demonstrate inheritance in Java
*Blog : http://javaxclass.blogspot.com
*/
class InheritanceDemo {
public static void main(String args[]){
Cube cube1=new Cube(3,7,5);
ColorCube ccb1=new ColorCube(2,9,4,"Blue");
cube1.showInfo();
System.out.println("_____________________________");
ccb1.showInfo();
System.out.println("\nMaking changes to cube objects....");
cube1.setWidth(8);
ccb1.setColor("Yellow");
ccb1.setHeight(6); //this methods is inherited by the Cube class
System.out.println("New info. of modified objects\n");
cube1.showInfo();
System.out.println("_____________________________");
ccb1.showInfo();
}
}