Results 1 to 5 of 5
- 10-30-2012, 02:25 PM #1
Member
- Join Date
- Oct 2012
- Posts
- 2
- Rep Power
- 0
- 10-30-2012, 03:09 PM #2
Re: Convert XL data in to latitude longitude format?
Moved from a staff-only section.
This is a forum, not a code factory. Recommended reading: How to ask questions the smart way
dbWhy do they call it rush hour when nothing moves? - Robin Williams
- 11-01-2012, 06:54 AM #3
Member
- Join Date
- Oct 2012
- Posts
- 2
- Rep Power
- 0
Re: Convert XL data in to latitude longitude format?
Hi
Hear im giving my code..This code to read xl data.
how to convert that xl data into latitude longitude format..
package com.wb;
import java.io.File;
import jxl.Sheet;
import jxl.Workbook;
public class WBEx {
public static void main(String...arg)
{
try {
Workbook wb = Workbook.getWorkbook(new File("d:/iso.xls"));
System.out.println(wb.getNumberOfSheets());
for(int sheetNo=0; sheetNo<wb.getNumberOfSheets();sheetNo++)
{
Sheet sheet = wb.getSheet(sheetNo);
int columns = sheet.getColumns();
int rows = sheet.getRows();
String data;
System.out.println("Sheet Name\t"+wb.getSheet(sheetNo).getName());
for(int row = 0;row < rows;row++) {
for(int col = 0;col < columns;col++) {
data = sheet.getCell(col, row).getContents();
System.out.print(data+ " ");
}
System.out.println("\n");
}
}
} catch(Exception ioe) {
ioe.printStackTrace();
}
}
}
- 11-01-2012, 12:21 PM #4
Re: Convert XL data in to latitude longitude format?
Please go through Guide For New Members and BB Code List - Java Programming Forum and edit your post accordingly.
dbWhy do they call it rush hour when nothing moves? - Robin Williams
- 11-01-2012, 02:26 PM #5
Moderator
- Join Date
- Apr 2009
- Posts
- 10,484
- Rep Power
- 16
Re: Convert XL data in to latitude longitude format?
Please do not ask for code as refusal often offends.
Similar Threads
-
how to convert .PES format to image
By stratosb in forum Java 2DReplies: 3Last Post: 12-05-2011, 08:04 PM -
How to Convert .jpg to .bmp Image Format
By deshmukh.niraj04 in forum New To JavaReplies: 12Last Post: 04-07-2011, 11:51 AM -
how to convert SWING GUI into exe format
By santhosh_el in forum AWT / SwingReplies: 7Last Post: 04-04-2009, 12:36 PM -
how to convert one format to another format
By mahipal_reddy621 in forum New To JavaReplies: 1Last Post: 12-02-2008, 10:21 AM -
how to convert date format
By saran123 in forum New To JavaReplies: 5Last Post: 10-16-2008, 06:10 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks