March 28, 2011
GeoTools DbaseFileReader Sample Code
I observed that, the code given in geotools documentation is wrong. The statement missing semi colon and major mistake is DbaseFileReader constructor is passing single argument. Actually there is no such constructor.
This sample code read the DBF file and display the row on console.
I am using NetBeans 6.9.1 , JDK 6 and GeoTools 7.2.1
I used following classes
import java.io.FileNotFoundException;
import java.io.IOException;
import java.nio.channels.FileChannel.*;
import org.geotools.data.shapefile.dbf.DbaseFileReader;
Following code read the DBF file from c: drive with the name jal.dbf. You can change the file name with your file location. You can paste this code to your command button event listener method.
Code:-
File selectedFile = jFileChooser1.getSelectedFile();
FileChannel in = null;
try {
in = new FileInputStream(selectedFile).getChannel(); //read the DBF file //Dynamic path
//in = new FileInputStream("c://jal.dbf").getChannel(); //Static path
} catch (FileNotFoundException ex) {
Logger.getLogger(SearchengineView.class.getName()).log(Level.SEVERE, null, ex);
}
DbaseFileReader r = null;
try {
r = new DbaseFileReader (in, false,Charset.forName("ISO-8859-1")); //line was wrong in original code
} catch (IOException ex1) { }
Object[] fields = new Object[r.getHeader().getNumFields()];
while(r.hasNext())
{
try {
r.readEntry(fields);
System.out.println(r.readRow()); //display the row on console
} catch (IOException ex) {
Logger.getLogger(SearchengineView.class.getName()).log(Level.SEVERE, null, ex);
}
}
try {
r.close();
} catch (IOException ex) {
Logger.getLogger(SearchengineView.class.getName()).log(Level.SEVERE, null, ex);
}
Subscribe to:
Post Comments (Atom)
Popular Posts
-
I am writing this article because my student Rachana. The question asked by her brother to her and she asked the same to me - “why toile...
-
President : Dr. A P J Abdul Kalam Prime Minister : Pranab Mukharji (Cong) Finance Minister : Dr. Manmohan Singh (Cong) Home...
-
#include<iostream.h> #include<conio.h> void main() { int x=0,a=0,b=1,n; clrscr()...
-
While writing an article on toilet soap ( Which soap do you use? Toilet soap or bathing bar? ), I found that, many people are interested t...
-
Test Cricket Team: Brain Lara (WI) Sachin Tendulkar (IND) Ricky Ponting (AUS) (Vice-captain) Rahul Dravid...
-
जेव्हा मानव प्रगत नव्हता तेव्हा त्याच्या भोवताली घडणा-या घटना त्याला चमत्कारच वाटायच्या आणि ह्या सर्व घटना ईश्वरच घडवतो अशी त्याची समजूत...
-
While roaming in departmental store, I saw the very attractive packing of my favorite soap Mysore Sandal with brand name Mysore Sandal Mill...
No comments:
Post a Comment