> 웹 프론트엔드 > HTML 튜토리얼 > 处理html解析问题_html/css_WEB-ITnose

处理html解析问题_html/css_WEB-ITnose

WBOY
풀어 주다: 2016-06-24 11:46:41
원래의
1022명이 탐색했습니다.

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();	}}
로그인 후 복사
package org.OutHtml.Util;import java.util.Iterator;import org.json.JSONException;import org.json.JSONObject;public class JsonOutHtml {	public String getHtml(JSONObject o,String HTML){		Iterator<string> keys=o.keys();         try {		while(keys.hasNext()){  			String key=keys.next();  			HTML = HTML.replace(key, String.valueOf(o.get(key)));		}        } catch (JSONException e) {			// TODO Auto-generated catch block			e.printStackTrace();		} 		return "";	}}</string>
로그인 후 복사
通过Json的形式替换吊页面的内容,就不用一个个的去写值了。


JsonObject ,这个数据从业务层获取,自己组装。HTML是模版里面定义的内容,key对应着对应的内容,进行替换掉。

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿