📄 readxzjj.java
字号:
package net.aetherial.gis.jiaotongbu.outputJTB.txtOutput.module.excel;
import jxl.Sheet;
import jxl.NumberCell;
/**
* <p>Title: </p>
*
* <p>Description: 读取表-8乡镇交界表</p>
*
* <p>Copyright: Copyright (c) 2004</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class ReadXZJJ extends ReadRecord{
public ReadXZJJ(Sheet sheet) {
super(sheet);
/**
* 乡镇的数据起点行为第4行.
*/
this.baseRow = Property.t8_XiangzhenJJ_Base_Row;
this.setRow(0);
}
/**
* 取 @param column_North_West_Xiangzhen 起点乡镇 的值
*/
public String getColumn_North_West_Xiangzhen(){
return rowData[0].getContents();
}
/**
* 取 @param column_South_East_Xiangzhen 起点乡镇 的值
*/
public String getColumn_South_East_Xiangzhen(){
return rowData[1].getContents().replaceAll("\\r","").replaceAll("\\n","");
}
/**
* 取 @param columnLongitude 交界点经度 的值
*/
public String getColumnLongitude(){
return ((NumberCell)rowData[2]).getValue()+"";
}
/**
* 取 @param columnLatitude 交界点纬度 的值
*/
public String getColumnLatitude(){
return ((NumberCell)rowData[3]).getValue()+"";
}
/**
* 取 @param columnDirection 方向 的值
*/
public String getColumnDirection(){
return rowData[4].getContents();
}
/**
* 取 @param columnOnRoad 所在路线 的值
*/
public String getColumnOnRoad(){
return rowData[5].getContents();
}
/**
* 取 @param columnBeizhu 备注 的值
*/
public String getColumnBeizhu(){
return rowData[6].getContents().replaceAll("\r","").replaceAll("\n","");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -