problem in date plz find out of the mistake on my code only 1 row Print

import java.io.FileInputStream;

import java.text.SimpleDateFormat;

import java.util.Date;

//import java.util.Iterator;

import org.apache.poi.hssf.usermodel.HSSFCell;

import org.apache.poi.hssf.usermodel.HSSFRow;

import org.apache.poi.hssf.usermodel.HSSFSheet;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;

import org.apache.poi.poifs.filesystem.POIFSFileSystem;

public class ExcelFileReader {

public ExcelFileReader(){

}

public void readExcelFile(POIFSFileSystem fs)throws Exception{

HSSFWorkbook wb = new HSSFWorkbook(fs);

HSSFSheet sheet = wb.getSheetAt(0);

HSSFCell cell= null;

for(int j=0;j<sheet.getPhysicalNumberOfRows();j++){

HSSFRow row = sheet.getRow(j);

for(int i=0;i<row.getPhysicalNumberOfCells();i++){

cell = row.getCell((short)i);

if(j==1 && i==2){

Date date = cell.getDateCellValue();

SimpleDateFormat objSimpleDateFormat = new SimpleDateFormat("MM/dd/yy");

System.out.println (objSimpleDateFormat.format(date));

} else {

if (cell.getCellType() == 0 ){

System.out.println(cell.getNumericCellValue());

} else if (cell.getCellType() == 1 ){

System.out.println(cell.getStringCellValue());

}

}

}

}

}

public static void main(String args[])throws Exception {

try{

ExcelFileReader objExcelFileReader = new ExcelFileReader();

POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("c:/test.xls"));

objExcelFileReader.readExcelFile (fs);

}catch(Exception ex){

ex.printStackTrace();

}

}

}>

[1689 byte] By [Naniga] at [2007-11-26 22:51:29]
# 1

No, you have it backwards. YOU have to tell US what the problem is. Then we will try to help.

Does the code compile?

Does the code run but throw exceptions?

Does the code run, but do something different than what you expect?

Post any error messages or stack traces that appear. And post your code inside the "code" tags (there's a button above where you post) with indentation.

DrClapa at 2007-7-10 12:13:32 > top of Java-index,Java Essentials,Java Programming...
# 2

i have problem in output of date in the excel file have set of columns all columns will print but date is not print plz modify the code

import java.io.FileInputStream;

import java.text.SimpleDateFormat;

import java.util.Date;

//import java.util.Iterator;

import org.apache.poi.hssf.usermodel.HSSFCell;

import org.apache.poi.hssf.usermodel.HSSFRow;

import org.apache.poi.hssf.usermodel.HSSFSheet;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;

import org.apache.poi.poifs.filesystem.POIFSFileSystem;

public class ExcelFileReader {

public ExcelFileReader(){

}

public void readExcelFile(POIFSFileSystem fs)throws Exception{

HSSFWorkbook wb = new HSSFWorkbook(fs);

HSSFSheet sheet = wb.getSheetAt(0);

HSSFCell cell= null;

for(int j=0;j<sheet.getPhysicalNumberOfRows();j++){

HSSFRow row = sheet.getRow(j);

for(int i=0;i<row.getPhysicalNumberOfCells();i++){

cell = row.getCell((short)i);

if(j==1 && i==2){

Date date = cell.getDateCellValue();

SimpleDateFormat objSimpleDateFormat = new SimpleDateFormat("MM/dd/yy");

System.out.println (objSimpleDateFormat.format(date));

} else {

if (cell.getCellType() == 0 ){

System.out.println(cell.getNumericCellValue());

} else if (cell.getCellType() == 1 ){

System.out.println(cell.getStringCellValue());

}

}

}

}

}

public static void main(String args[])throws Exception {

try{

ExcelFileReader objExcelFileReader = new ExcelFileReader();

POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("c:/test.xls"));

objExcelFileReader.readExcelFile (fs);

}catch(Exception ex){

ex.printStackTrace();

}

}

}

output:-

Eno

Ename

DOJ

SALARY

DeptNo

Attendence

1.0

Naresh

01/01/07

1000.0

1.0

P

1.0

Naresh

39084.0

1000.0

1.0

P

1.0

Naresh

39085.0

1000.0

1.0

P

1.0

Naresh

39086.0

1000.0

1.0

P

1.0

Naresh

39087.0

1000.0

1.0

P

1.0

Naresh

39088.0

0.0

1.0

A

1.0

Naresh

39089.0

0.0

1.0

A

1.0

Naresh

39090.0

0.0

1.0

A

1.0

Naresh

39091.0

1000.0

1.0

P

1.0

Naresh

39092.0

1000.0

1.0

P

1.0

Naresh

39093.0

1000.0

1.0

P

1.0

Naresh

39094.0

1000.0

1.0

P

1.0

Naresh

39095.0

0.0

1.0

A

1.0

Naresh

39096.0

1000.0

1.0

P

1.0

Naresh

39097.0

1000.0

1.0

P

1.0

Naresh

39098.0

1000.0

1.0

P

1.0

Naresh

39099.0

1000.0

1.0

P

1.0

Naresh

39100.0

1000.0

1.0

P

1.0

Naresh

39101.0

0.0

1.0

A

1.0

Naresh

39102.0

1000.0

1.0

P

1.0

Naresh

39103.0

1000.0

1.0

P

1.0

Naresh

39104.0

1000.0

1.0

P

1.0

Naresh

39105.0

1000.0

1.0

P

1.0

Naresh

39106.0

1000.0

1.0

P

1.0

Naresh

39107.0

1000.0

1.0

P

1.0

Naresh

39108.0

1000.0

1.0

P

1.0

Naresh

39109.0

1000.0

1.0

P

1.0

Naresh

39110.0

1000.0

1.0

P

1.0

Naresh

39111.0

1000.0

1.0

P

1.0

Naresh

39112.0

0.0

1.0

A

1.0

Naresh

39114.0

1000.0

1.0

P

1.0

Naresh

39115.0

1000.0

1.0

P

1.0

Naresh

39116.0

1000.0

1.0

P

1.0

Naresh

39117.0

1000.0

1.0

P

1.0

Naresh

39118.0

1000.0

1.0

P

1.0

Naresh

39119.0

1000.0

1.0

P

1.0

Naresh

39120.0

1000.0

1.0

P

1.0

Naresh

39121.0

1000.0

1.0

P

1.0

Naresh

39122.0

1000.0

1.0

P

1.0

Naresh

39123.0

1000.0

1.0

P

1.0

Naresh

39124.0

1000.0

1.0

P

1.0

Naresh

39125.0

1000.0

1.0

P

1.0

Naresh

39126.0

1000.0

1.0

P

1.0

Naresh

39127.0

1000.0

1.0

P

1.0

Naresh

39128.0

1000.0

1.0

P

1.0

Naresh

39129.0

1000.0

1.0

P

1.0

Naresh

39130.0

1000.0

1.0

P

1.0

Naresh

39131.0

1000.0

1.0

P

1.0

Naresh

39132.0

1000.0

1.0

P

1.0

Naresh

39133.0

1000.0

1.0

P

1.0

Naresh

39134.0

1000.0

1.0

P

1.0

Naresh

39135.0

1000.0

1.0

P

1.0

Naresh

39136.0

1000.0java.lang.NullPointerException

at ExcelFileReader.readExcelFile(ExcelFileReader.java:35)

at ExcelFileReader.main(ExcelFileReader.java:49)

1.0

P

1.0

Naresh

39137.0

1000.0

1.0

P

1.0

Naresh

39138.0

1000.0

1.0

P

1.0

Naresh

39139.0

1000.0

1.0

P

1.0

Naresh

39140.0

1000.0

1.0

P

1.0

Naresh

39142.0

1000.0

1.0

P

1.0

Naresh

39143.0

1000.0

1.0

P

1.0

Naresh

39144.0

1000.0

1.0

P

1.0

Naresh

39145.0

1000.0

1.0

P

1.0

Naresh

39146.0

1000.0

1.0

P

1.0

Naresh

39147.0

1000.0

1.0

P

1.0

Naresh

39148.0

1000.0

1.0

P

1.0

Naresh

39149.0

1000.0

1.0

P

1.0

Naresh

39150.0

1000.0

1.0

P

1.0

Naresh

39151.0

1000.0

1.0

P

1.0

Naresh

39152.0

1000.0

1.0

P

1.0

Naresh

39153.0

1000.0

1.0

P

1.0

Naresh

39154.0

1000.0

1.0

P

1.0

Naresh

39155.0

1000.0

1.0

P

1.0

Naresh

39156.0

1000.0

1.0

P

1.0

Naresh

39157.0

0.0

1.0

A

1.0

Naresh

39158.0

0.0

1.0

A

1.0

Naresh

39159.0

0.0

1.0

A

1.0

Naresh

39160.0

0.0

1.0

A

1.0

Naresh

39161.0

0.0

1.0

A

1.0

Naresh

39162.0

0.0

1.0

A

1.0

Naresh

39163.0

0.0

1.0

A

1.0

Naresh

39164.0

0.0

1.0

A

1.0

Naresh

39165.0

0.0

1.0

A

1.0

Naresh

39166.0

1000.0

1.0

P

1.0

Naresh

39167.0

1000.0

1.0

P

1.0

Naresh

39168.0

1000.0

1.0

P

1.0

Naresh

39169.0

1000.0

1.0

P

1.0

Naresh

39170.0

1000.0

1.0

P

1.0

Naresh

39171.0

1000.0

1.0

P

2.0

Nani

39083.0

1000.0

2.0

P

2.0

Nani

39084.0

1000.0

2.0

P

2.0

Nani

39085.0

1000.0

2.0

P

2.0

Nani

39086.0

1000.0

2.0

P

2.0

Nani

39087.0

1000.0

2.0

P

2.0

Nani

39088.0

1000.0

2.0

P

2.0

Nani

39089.0

1000.0

2.0

P

2.0

Nani

39090.0

1000.0

2.0

P

2.0

Nani

39091.0

0.0

2.0

A

2.0

Nani

39092.0

1000.0

2.0

P

2.0

Nani

39093.0

1000.0

2.0

P

2.0

Nani

39094.0

1000.0

2.0

P

2.0

Nani

39095.0

0.0

2.0

A

2.0

Nani

39096.0

0.0

2.0

A

2.0

Nani

39097.0

0.0

2.0

A

2.0

Nani

39098.0

0.0

2.0

A

2.0

Nani

39099.0

0.0

2.0

A

2.0

Nani

39100.0

1000.0

2.0

P

2.0

Nani

39101.0

1000.0

2.0

P

2.0

Nani

39102.0

1000.0

2.0

P

2.0

Nani

39103.0

1000.0

2.0

P

2.0

Nani

39104.0

1000.0

2.0

P

2.0

Nani

39105.0

1000.0

2.0

P

2.0

Nani

39106.0

1000.0

2.0

P

2.0

Nani

39107.0

1000.0

2.0

P

2.0

Nani

39108.0

1000.0

2.0

P

2.0

Nani

39109.0

1000.0

2.0

P

2.0

Nani

39110.0

1000.0

2.0

P

2.0

Nani

39111.0

1000.0

2.0

P

2.0

Nani

39112.0

1000.0

2.0

P

2.0

Nani

39113.0

1000.0

2.0

P

2.0

Nani

39114.0

1000.0

2.0

P

2.0

Nani

39115.0

1000.0

2.0

P

2.0

Nani

39116.0

1000.0

2.0

P

2.0

Nani

39117.0

1000.0

2.0

P

2.0

Nani

39118.0

1000.0

2.0

P

2.0

Nani

39119.0

1000.0

2.0

P

2.0

Nani

39120.0

1000.0

2.0

P

2.0

Nani

39121.0

1000.0

2.0

P

2.0

Nani

39122.0

1000.0

2.0

P

2.0

Nani

39123.0

1000.0

2.0

P

2.0

Nani

39124.0

1000.0

2.0

P

2.0

Nani

39125.0

1000.0

2.0

P

2.0

Nani

39126.0

1000.0

2.0

P

2.0

Nani

39127.0

1000.0

2.0

P

2.0

Nani

39128.0

1000.0

2.0

P

2.0

Nani

39129.0

1000.0

2.0

P

2.0

Nani

39130.0

1000.0

2.0

P

2.0

Nani

39131.0

1000.0

2.0

P

2.0

Nani

39132.0

1000.0

2.0

P

2.0

Nani

39133.0

1000.0

2.0

P

2.0

Nani

39134.0

1000.0

2.0

P

2.0

Nani

39135.0

1000.0

2.0

P

2.0

Nani

39136.0

1000.0

2.0

P

2.0

Nani

39137.0

1000.0

2.0

P

2.0

Nani

39138.0

1000.0

2.0

P

2.0

Nani

39139.0

1000.0

2.0

P

2.0

Nani

39140.0

1000.0

2.0

P

2.0

Nani

39141.0

1000.0

2.0

P

2.0

Nani

39142.0

1000.0

2.0

P

2.0

Nani

39143.0

1000.0

2.0

P

2.0

Nani

39144.0

1000.0

2.0

P

2.0

Nani

39145.0

1000.0

2.0

P

2.0

Nani

39146.0

1000.0

2.0

P

2.0

Nani

39147.0

1000.0

2.0

P

2.0

Nani

39148.0

1000.0

2.0

P

2.0

Nani

39149.0

1000.0

2.0

P

2.0

Nani

39150.0

1000.0

2.0

P

2.0

Nani

39151.0

1000.0

2.0

P

2.0

Nani

39152.0

1000.0

2.0

P

2.0

Nani

39153.0

1000.0

2.0

P

2.0

Nani

39154.0

1000.0

2.0

P

2.0

Nani

39155.0

1000.0

2.0

P

2.0

Nani

39156.0

1000.0

2.0

P

2.0

Nani

39157.0

1000.0

2.0

P

2.0

Nani

39158.0

1000.0

2.0

P

2.0

Nani

39159.0

1000.0

2.0

P

2.0

Nani

39160.0

1000.0

2.0

P

2.0

Nani

39161.0

1000.0

2.0

P

2.0

Nani

39162.0

1000.0

2.0

P

2.0

Nani

39163.0

1000.0

2.0

P

2.0

Nani

39164.0

1000.0

2.0

P

2.0

Nani

39165.0

1000.0

2.0

P

2.0

Nani

39166.0

1000.0

2.0

P

2.0

Nani

39167.0

1000.0

2.0

P

2.0

Nani

39168.0

1000.0

2.0

P

2.0

Nani

39169.0

1000.0

2.0

P

2.0

Nani

39170.0

1000.0

2.0

P

2.0

Nani

39171.0

1000.0

2.0

P

3.0

Raju

39083.0

1000.0

3.0

P

3.0

Raju

39084.0

1000.0

3.0

P

3.0

Raju

39085.0

1000.0

3.0

P

3.0

Raju

39086.0

1000.0

3.0

P

3.0

Raju

39087.0

1000.0

3.0

P

3.0

Raju

39088.0

1000.0

3.0

P

3.0

Raju

39089.0

1000.0

3.0

P

3.0

Raju

39090.0

1000.0

3.0

P

3.0

Raju

39091.0

1000.0

3.0

P

3.0

Raju

39092.0

1000.0

3.0

P

3.0

Raju

39093.0

1000.0

3.0

P

3.0

Raju

39094.0

1000.0

3.0

P

3.0

Raju

39095.0

1000.0

3.0

P

3.0

Raju

39096.0

1000.0

3.0

P

3.0

Raju

39097.0

1000.0

3.0

P

3.0

Raju

39098.0

1000.0

3.0

P

3.0

Raju

39099.0

1000.0

3.0

P

3.0

Raju

39100.0

1000.0

3.0

P

3.0

Raju

39101.0

1000.0

3.0

P

3.0

Raju

39102.0

1000.0

3.0

P

3.0

Raju

39103.0

1000.0

3.0

P

3.0

Raju

39104.0

1000.0

3.0

P

3.0

Raju

39105.0

1000.0

3.0

P

3.0

Raju

39106.0

1000.0

3.0

P

3.0

Raju

39107.0

1000.0

3.0

P

3.0

Raju

39108.0

1000.0

3.0

P

3.0

Raju

39109.0

1000.0

3.0

P

3.0

Raju

39110.0

1000.0

3.0

P

3.0

Raju

39111.0

1000.0

3.0

P

3.0

Raju

39112.0

1000.0

3.0

P

3.0

Raju

39113.0

1000.0

3.0

P

3.0

Raju

39114.0

1000.0

3.0

P

3.0

Raju

39115.0

1000.0

3.0

P

3.0

Raju

39116.0

1000.0

3.0

P

3.0

Raju

39117.0

1000.0

3.0

P

3.0

Raju

39118.0

1000.0

3.0

P

3.0

Raju

39119.0

1000.0

3.0

P

3.0

Raju

39120.0

1000.0

3.0

P

3.0

Raju

39121.0

1000.0

3.0

P

3.0

Raju

39122.0

1000.0

3.0

P

3.0

Raju

39123.0

1000.0

3.0

P

3.0

Raju

39124.0

1000.0

3.0

P

3.0

Raju

39125.0

1000.0

3.0

P

3.0

Raju

39126.0

1000.0

3.0

P

3.0

Raju

39127.0

1000.0

3.0

P

3.0

Raju

39128.0

1000.0

3.0

P

3.0

Raju

39129.0

1000.0

3.0

P

3.0

Raju

39130.0

1000.0

3.0

P

3.0

Raju

39131.0

1000.0

3.0

P

3.0

Raju

39132.0

1000.0

3.0

P

3.0

Raju

39133.0

1000.0

3.0

P

3.0

Raju

39134.0

1000.0

3.0

P

3.0

Raju

39135.0

1000.0

3.0

P

3.0

Raju

39136.0

1000.0

3.0

P

3.0

Raju

39137.0

1000.0

3.0

P

3.0

Raju

39138.0

1000.0

3.0

P

3.0

Raju

39139.0

1000.0

3.0

P

3.0

Raju

39140.0

1000.0

3.0

P

3.0

Raju

39141.0

1000.0

3.0

P

3.0

Raju

39142.0

1000.0

3.0

P

3.0

Raju

39143.0

1000.0

3.0

P

3.0

Raju

39144.0

1000.0

3.0

P

3.0

Raju

39145.0

1000.0

3.0

P

3.0

Raju

39146.0

1000.0

3.0

P

3.0

Raju

39147.0

1000.0

3.0

P

3.0

Raju

39148.0

1000.0

3.0

P

3.0

Raju

39149.0

1000.0

3.0

P

3.0

Raju

39150.0

1000.0

3.0

P

3.0

Raju

39151.0

1000.0

3.0

P

3.0

Raju

39152.0

1000.0

3.0

P

3.0

Raju

39153.0

1000.0

3.0

P

3.0

Raju

39154.0

1000.0

3.0

P

3.0

Raju

39155.0

1000.0

3.0

P

3.0

Raju

39156.0

1000.0

3.0

P

3.0

Raju

39157.0

1000.0

3.0

P

3.0

Raju

39158.0

1000.0

3.0

P

3.0

Raju

39159.0

1000.0

3.0

P

3.0

Raju

39160.0

1000.0

3.0

P

3.0

Raju

39161.0

1000.0

3.0

P

3.0

Raju

39162.0

1000.0

3.0

P

3.0

Raju

39163.0

1000.0

3.0

P

3.0

Raju

39164.0

1000.0

3.0

P

3.0

Raju

39165.0

1000.0

3.0

P

3.0

Raju

39166.0

1000.0

3.0

P

3.0

Raju

39167.0

1000.0

3.0

P

3.0

Raju

39168.0

1000.0

3.0

P

3.0

Raju

39169.0

1000.0

3.0

P

3.0

Raju

39170.0

1000.0

3.0

P

3.0

Raju

39171.0

1000.0

3.0

P

3.0

Raju

39172.0

1000.0

3.0

P

excel file:

EnoEnameDOJSALARYDeptNoAttendence

1Naresh01/01/07INR 1,000.001P

1Naresh01/02/07INR 1,000.001P

1Naresh01/03/07INR 1,000.001P

1Naresh01/04/07INR 1,000.001P

1Naresh01/05/07INR 1,000.001P

1Naresh01/06/07INR 0.001A

1Naresh01/07/07INR 0.001A

1Naresh01/08/07INR 0.001A

1Naresh01/09/07INR 1,000.001P

1Naresh01/10/07INR 1,000.001P

1Naresh01/11/07INR 1,000.001P

1Naresh01/12/07INR 1,000.001P

1Naresh01/13/07INR 0.001A

1Naresh01/14/07INR 1,000.001P

1Naresh01/15/07INR 1,000.001P

1Naresh01/16/07INR 1,000.001P

1Naresh01/17/07INR 1,000.001P

1Naresh01/18/07INR 1,000.001P

1Naresh01/19/07INR 0.001A

1Naresh01/20/07INR 1,000.001P

1Naresh01/21/07INR 1,000.001P

1Naresh01/22/07INR 1,000.001P

1Naresh01/23/07INR 1,000.001P

1Naresh01/24/07INR 1,000.001P

1Naresh01/25/07INR 1,000.001P

1Naresh01/26/07INR 1,000.001P

1Naresh01/27/07INR 1,000.001P

1Naresh01/28/07INR 1,000.001P

1Naresh01/29/07INR 1,000.001P

1Naresh01/30/07INR 0.001A

1Naresh02/01/07INR 1,000.001P

1Naresh02/02/07INR 1,000.001P

1Naresh02/03/07INR 1,000.001P

1Naresh02/04/07INR 1,000.001P

1Naresh02/05/07INR 1,000.001P

1Naresh02/06/07INR 1,000.001P

1Naresh02/07/07INR 1,000.001P

1Naresh02/08/07INR 1,000.001P

1Naresh02/09/07INR 1,000.001P

1Naresh02/10/07INR 1,000.001P

1Naresh02/11/07INR 1,000.001P

1Naresh02/12/07INR 1,000.001P

1Naresh02/13/07INR 1,000.001P

1Naresh02/14/07INR 1,000.001P

1Naresh02/15/07INR 1,000.001P

1Naresh02/16/07INR 1,000.001P

1Naresh02/17/07INR 1,000.001P

1Naresh02/18/07INR 1,000.001P

1Naresh02/19/07INR 1,000.001P

1Naresh02/20/07INR 1,000.001P

1Naresh02/21/07INR 1,000.001P

1Naresh02/22/07INR 1,000.001P

1Naresh02/23/07INR 1,000.001P

1Naresh02/24/07INR 1,000.001P

1Naresh02/25/07INR 1,000.001P

1Naresh02/26/07INR 1,000.001P

1Naresh02/27/07INR 1,000.001P

1Naresh03/01/07INR 1,000.001P

1Naresh03/02/07INR 1,000.001P

1Naresh03/03/07INR 1,000.001P

1Naresh03/04/07INR 1,000.001P

1Naresh03/05/07INR 1,000.001P

1Naresh03/06/07INR 1,000.001P

1Naresh03/07/07INR 1,000.001P

1Naresh03/08/07INR 1,000.001P

1Naresh03/09/07INR 1,000.001P

1Naresh03/10/07INR 1,000.001P

1Naresh03/11/07INR 1,000.001P

1Naresh03/12/07INR 1,000.001P

1Naresh03/13/07INR 1,000.001P

1Naresh03/14/07INR 1,000.001P

1Naresh03/15/07INR 1,000.001P

1Naresh03/16/07INR 0.001A

1Naresh03/17/07INR 0.001A

1Naresh03/18/07INR 0.001A

1Naresh03/19/07INR 0.001A

1Naresh03/20/07INR 0.001A

1Naresh03/21/07INR 0.001A

1Naresh03/22/07INR 0.001A

1Naresh03/23/07INR 0.001A

1Naresh03/24/07INR 0.001A

1Naresh03/25/07INR 1,000.001P

1Naresh03/26/07INR 1,000.001P

1Naresh03/27/07INR 1,000.001P

1Naresh03/28/07INR 1,000.001P

1Naresh03/29/07INR 1,000.001P

1Naresh03/30/07INR 1,000.001P

2Nani01/01/07INR 1,000.002P

2Nani01/02/07INR 1,000.002P

2Nani01/03/07INR 1,000.002P

2Nani01/04/07INR 1,000.002P

2Nani01/05/07INR 1,000.002P

2Nani01/06/07INR 1,000.002P

2Nani01/07/07INR 1,000.002P

2Nani01/08/07INR 1,000.002P

2Nani01/09/07INR 0.002A

2Nani01/10/07INR 1,000.002P

2Nani01/11/07INR 1,000.002P

2Nani01/12/07INR 1,000.002P

2Nani01/13/07INR 0.002A

2Nani01/14/07INR 0.002A

2Nani01/15/07INR 0.002A

2Nani01/16/07INR 0.002A

2Nani01/17/07INR 0.002A

2Nani01/18/07INR 1,000.002P

2Nani01/19/07INR 1,000.002P

2Nani01/20/07INR 1,000.002P

2Nani01/21/07INR 1,000.002P

2Nani01/22/07INR 1,000.002P

2Nani01/23/07INR 1,000.002P

2Nani01/24/07INR 1,000.002P

2Nani01/25/07INR 1,000.002P

2Nani01/26/07INR 1,000.002P

2Nani01/27/07INR 1,000.002P

2Nani01/28/07INR 1,000.002P

2Nani01/29/07INR 1,000.002P

2Nani01/30/07INR 1,000.002P

2Nani01/31/07INR 1,000.002P

2Nani02/01/07INR 1,000.002P

2Nani02/02/07INR 1,000.002P

2Nani02/03/07INR 1,000.002P

2Nani02/04/07INR 1,000.002P

2Nani02/05/07INR 1,000.002P

2Nani02/06/07INR 1,000.002P

2Nani02/07/07INR 1,000.002P

2Nani02/08/07INR 1,000.002P

2Nani02/09/07INR 1,000.002P

2Nani02/10/07INR 1,000.002P

2Nani02/11/07INR 1,000.002P

2Nani02/12/07INR 1,000.002P

2Nani02/13/07INR 1,000.002P

2Nani02/14/07INR 1,000.002P

2Nani02/15/07INR 1,000.002P

2Nani02/16/07INR 1,000.002P

2Nani02/17/07INR 1,000.002P

2Nani02/18/07INR 1,000.002P

2Nani02/19/07INR 1,000.002P

2Nani02/20/07INR 1,000.002P

2Nani02/21/07INR 1,000.002P

2Nani02/22/07INR 1,000.002P

2Nani02/23/07INR 1,000.002P

2Nani02/24/07INR 1,000.002P

2Nani02/25/07INR 1,000.002P

2Nani02/26/07INR 1,000.002P

2Nani02/27/07INR 1,000.002P

2Nani02/28/07INR 1,000.002P

2Nani03/01/07INR 1,000.002P

2Nani03/02/07INR 1,000.002P

2Nani03/03/07INR 1,000.002P

2Nani03/04/07INR 1,000.002P

2Nani03/05/07INR 1,000.002P

2Nani03/06/07INR 1,000.002P

2Nani03/07/07INR 1,000.002P

2Nani03/08/07INR 1,000.002P

2Nani03/09/07INR 1,000.002P

2Nani03/10/07INR 1,000.002P

2Nani03/11/07INR 1,000.002P

2Nani03/12/07INR 1,000.002P

2Nani03/13/07INR 1,000.002P

2Nani03/14/07INR 1,000.002P

2Nani03/15/07INR 1,000.002P

2Nani03/16/07INR 1,000.002P

2Nani03/17/07INR 1,000.002P

2Nani03/18/07INR 1,000.002P

2Nani03/19/07INR 1,000.002P

2Nani03/20/07INR 1,000.002P

2Nani03/21/07INR 1,000.002P

2Nani03/22/07INR 1,000.002P

2Nani03/23/07INR 1,000.002P

2Nani03/24/07INR 1,000.002P

2Nani03/25/07INR 1,000.002P

2Nani03/26/07INR 1,000.002P

2Nani03/27/07INR 1,000.002P

2Nani03/28/07INR 1,000.002P

2Nani03/29/07INR 1,000.002P

2Nani03/30/07INR 1,000.002P

3Raju01/01/07INR 1,000.003P

3Raju01/02/07INR 1,000.003P

3Raju01/03/07INR 1,000.003P

3Raju01/04/07INR 1,000.003P

3Raju01/05/07INR 1,000.003P

3Raju01/06/07INR 1,000.003P

3Raju01/07/07INR 1,000.003P

3Raju01/08/07INR 1,000.003P

3Raju01/09/07INR 1,000.003P

3Raju01/10/07INR 1,000.003P

3Raju01/11/07INR 1,000.003P

3Raju01/12/07INR 1,000.003P

3Raju01/13/07INR 1,000.003P

3Raju01/14/07INR 1,000.003P

3Raju01/15/07INR 1,000.003P

3Raju01/16/07INR 1,000.003P

3Raju01/17/07INR 1,000.003P

3Raju01/18/07INR 1,000.003P

3Raju01/19/07INR 1,000.003P

3Raju01/20/07INR 1,000.003P

3Raju01/21/07INR 1,000.003P

3Raju01/22/07INR 1,000.003P

3Raju01/23/07INR 1,000.003P

3Raju01/24/07INR 1,000.003P

3Raju01/25/07INR 1,000.003P

3Raju01/26/07INR 1,000.003P

3Raju01/27/07INR 1,000.003P

3Raju01/28/07INR 1,000.003P

3Raju01/29/07INR 1,000.003P

3Raju01/30/07INR 1,000.003P

3Raju01/31/07INR 1,000.003P

3Raju02/01/07INR 1,000.003P

3Raju02/02/07INR 1,000.003P

3Raju02/03/07INR 1,000.003P

3Raju02/04/07INR 1,000.003P

3Raju02/05/07INR 1,000.003P

3Raju02/06/07INR 1,000.003P

3Raju02/07/07INR 1,000.003P

3Raju02/08/07INR 1,000.003P

3Raju02/09/07INR 1,000.003P

3Raju02/10/07INR 1,000.003P

3Raju02/11/07INR 1,000.003P

3Raju02/12/07INR 1,000.003P

3Raju02/13/07INR 1,000.003P

3Raju02/14/07INR 1,000.003P

3Raju02/15/07INR 1,000.003P

3Raju02/16/07INR 1,000.003P

3Raju02/17/07INR 1,000.003P

3Raju02/18/07INR 1,000.003P

3Raju02/19/07INR 1,000.003P

3Raju02/20/07INR 1,000.003P

3Raju02/21/07INR 1,000.003P

3Raju02/22/07INR 1,000.003P

3Raju02/23/07INR 1,000.003P

3Raju02/24/07INR 1,000.003P

3Raju02/25/07INR 1,000.003P

3Raju02/26/07INR 1,000.003P

3Raju02/27/07INR 1,000.003P

3Raju02/28/07INR 1,000.003P

3Raju03/01/07INR 1,000.003P

3Raju03/02/07INR 1,000.003P

3Raju03/03/07INR 1,000.003P

3Raju03/04/07INR 1,000.003P

3Raju03/05/07INR 1,000.003P

3Raju03/06/07INR 1,000.003P

3Raju03/07/07INR 1,000.003P

3Raju03/08/07INR 1,000.003P

3Raju03/09/07INR 1,000.003P

3Raju03/10/07INR 1,000.003P

3Raju03/11/07INR 1,000.003P

3Raju03/12/07INR 1,000.003P

3Raju03/13/07INR 1,000.003P

3Raju03/14/07INR 1,000.003P

3Raju03/15/07INR 1,000.003P

3Raju03/16/07INR 1,000.003P

3Raju03/17/07INR 1,000.003P

3Raju03/18/07INR 1,000.003P

3Raju03/19/07INR 1,000.003P

3Raju03/20/07INR 1,000.003P

3Raju03/21/07INR 1,000.003P

3Raju03/22/07INR 1,000.003P

3Raju03/23/07INR 1,000.003P

3Raju03/24/07INR 1,000.003P

3Raju03/25/07INR 1,000.003P

3Raju03/26/07INR 1,000.003P

3Raju03/27/07INR 1,000.003P

3Raju03/28/07INR 1,000.003P

3Raju03/29/07INR 1,000.003P

3Raju03/30/07INR 1,000.003P

3Raju03/31/07INR 1,000.003P>

Naniga at 2007-7-10 12:13:32 > top of Java-index,Java Essentials,Java Programming...