No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Re: We can use the strtoupper() function to do the trick for us <?php $word = "we Love php"; $word = strtoupper($word); echo $word; //WE LOVE PHP ?> | |
Re: Hi, I have gone through this program. try{ String ROOT_PATH = "C:\\tomcat\\webapps\\SnetReport\\REPORT\\"; FileInputStream in = new FileInputStream(ROOT_PATH + sFilename); response.setContentType("application/xls"); response.setHeader("Content-Disposition", "attachment;filename=\"Report.xls\""); int i; while ((i=in.read()) != -1) { out.write(i); } in.close(); out.close();}catch(Exception e) System.out.println("...error while loading: "+e.toString());} In the above code what is the sFileName |
The End.