html 분석 문제 처리

1849 단어 자바
package org.OutHtml.Dao;

import java.io.FileNotFoundException;
import java.io.IOException;

public interface HtmlDao {

	public String getHtmlFile(String Path) throws IOException;
	
	public String getHtmlSql(String SqlHtml);
	
	public String getHtmlURL(String URL) throws IOException;
}
package org.OutHtml.Dao.imp;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

import org.OutHtml.Dao.HtmlDao;

/*
 * @       HTML     
 * 
 *    2015-04-08 22:11:00;
 * 
 *       :  
 */
public class HtmlDaoImp implements HtmlDao{

	public String getHtmlFile(String Path) throws IOException {
		// TODO Auto-generated method stub
		StringBuffer sb = new StringBuffer();
		
		BufferedReader bufr = new BufferedReader(new FileReader(Path));
		
		String line = null;
		
		while((line = bufr.readLine()) != null){
			sb.append(line);
		}
		return sb.toString();
	}

	public String getHtmlSql(String SqlHtml) {
		// TODO Auto-generated method stub
		StringBuffer sb = new StringBuffer();
		
		
		
		return null;
	}

	public String getHtmlURL(String urls) throws IOException {
		// TODO Auto-generated method stub
		StringBuffer sb = new StringBuffer();
		URL url = new URL(urls);
		URLConnection conn = url.openConnection();
		
		BufferedReader bufin = new BufferedReader(new InputStreamReader(conn.getInputStream()));
		
		String line = null;
		
		while((line = bufin.readLine()) != null){
			sb.append(line);
		}
		return sb.toString();
	}

}

4. 567913. 제 이 슨 의 형식 으로 페이지 의 내용 을 교체 하면 하나씩 값 을 쓰 지 않 아 도 된다.
Json Object, 이 데 이 터 는 업무 층 에서 가 져 와 스스로 조립 합 니 다.HTML 은 모드 에서 정 의 된 내용 으로 key 는 해당 하 는 내용 에 대응 하여 교체 합 니 다.

좋은 웹페이지 즐겨찾기