POI 로 Word 내용 추출

622 단어 apache.Office
POI 3.5 로 Word 내용 을 추출 하려 면 한 마디 만 필요 합 니 다.
 
	/**
	 *   <a href="http://poi.apache.org/">POI</a>  MS office 2003 word       
	 * @param file
	 *            MS Word2003    {@link File}  
	 * @return      {@link String}
	 * @throws IOException
	 * @throws FileNotFoundException
	 */
	public String getContents(File file) throws FileNotFoundException,
			IOException {
		WordExtractor wordExtractor = new WordExtractor(new FileInputStream(
				file));
		return wordExtractor.getTextFromPieces();
	}

좋은 웹페이지 즐겨찾기