Columns
The model column is not displayed by default. Click columns> model to display the model column ....
Column
Columns column... 118 Valley round comment: translation platform (text/Valley)
First column
All rows in the rows worksheet... Columns (1) first column... columns ("A") First Column
All columns on the worksheet
Columns ("A") first column... all columns on the columns Worksheet
Example related to columns
- A court enclosed by columns.
The hall surrounded by pillars in the atrium of the bar
- Constructed with or having columns.
Of or composed of columns.
- Having columns on all sides.
There are columns on all sides.
- Not having columns or pilasters.
Pillar-less or wall-column-less
- These columns sustain the arches.
These columns support the arch.
- The troops formed into columns.
The soldiers lined up.
- A row of evenly spaced columns.
It is usually a column of Columns with the same distance.
- Cut a furrow into a columns.
Open a trench in the cylinder.
- (Architecture) lacking columns or pillars.
(Architecture) lacks a cylindrical or column.
- Afford me the hospitality of your columns.
Please use it in your magazine.
--------------------
Import java. Io .*;
Import jxl .*;
Public class readxls {
Public static void main (string ARGs []) {
Try {
Workbook book = Workbook. getworkbook (new file ("D:/3.xls "));
// Obtain the first worksheet object
Sheet sheet = book. getsheet (0 );
// Obtain the cell in the first column
For (INT I = 0, j = 0; I <sheet. getcolumns (); I ++ ){
Cell cell1 = sheet. getcell (I, 0 );
String result = cell1.getcontents ();
System. Out. println (result );
}
Book. Close ();
} Catch (exception e ){
System. Out. println (E );
}
}
}
Java reads the content of a row in Excel.
--------------------------
Jxl. jar and description
Http://download.csdn.net/source/534250
Http://www.ibm.com/developerworks/cn/java/l-javaExcel/index.html
Http://baike.baidu.com/view/1327707.html
Http://yuanyuan7891.javaeye.com/blog/656388