Java Concept

This blog will really helpful to summarize the few Java Related Concept and them real time needs.

Monday, July 26, 2010

Reading MS Word Document With Java (Apache POI API)

›
public void readDocument(String fileName){  try {             POIFSFileSystem poifs = new POIFSFileSystem(new FileInputStream(fileName)); ...
1 comment:
Saturday, July 24, 2010

Reading System Environment With JAVA

›
Map sysEnv =  System.getenv();        for (String key : sysEnv.keySet()) {      System.out.println(key +" => "+ sysEnv.get(...

Append Property To System Properties With JAVA

›
  Properties sysProp = System.getProperties();          sysProp.setProperty("country", "India");         System.setPro...

Reading System Properties With JAVA

›
        Properties sysProp = System.getProperties();         for (String key : sysProp.stringPropertyNames() ) {             System.out....

Reading XML File With Java

›
public void readXML (String filePath) throws Exception {         Document doc = getDocument(filePath);         Element el = doc.getDocumen...
›
Home
View web version

Contributors [ Writer(s) ]

  • Ketan patel
  • Master Moin
Powered by Blogger.