|
This example will read the file into a string
buffer. You could adapt to whatever you would like to do with the data as
it is read. Hope this helps.
Mike
String filepathname = new
String("thisisthefilename.xls");
File uploadedfile = new
File(filepathname.trim());
StringBuffer sb = new StringBuffer(); try {
BufferedReader br = new BufferedReader(new FileReader(uploadedfile)); String stringline = null; while ((stringline = br.readLine()) !=
null) {
sb.append(stringline);
}
} catch (IOException e)
{
} ----- Original Message -----
|
- Re: url mapping Michael Weller
- Re: url mapping Pierre-Yves Saumont
- Re: url mapping Pierre-Yves Saumont
- Re: url mapping Michael Weller
- Re: url mapping Marco Trevisan
- Re: url mapping Pierre-Yves Saumont
- Re: url mapping Marco Trevisan
- URL Mapping Senthoor
- Re: URL Mapping Michael Weller
- Reading Excel File Version from Java Hari Puthalapat
- Re: Reading Excel File Version from Java Mike Silvers
- Re: Reading Excel File Version from J... Hari Puthalapat
- Re: Reading Excel File Version f... Mike Silvers
- Re: Reading Excel File Version from Java Anthony W. Marino
- Re: URL Mapping Nelson William
- Re: URL Mapping Frans Verhoef
- Re: URL Mapping Senthoor
- Re: URL Mapping Dror Matalon
- Re: URL Mapping Frans Verhoef
- Re: URL Mapping Senthoor
- Re: URL Mapping Partha Ranjan Das
