加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

解析rdf格式的数据

发布时间:2020-12-16 06:02:02 所属栏目:百科 来源:网络整理
导读:自定义类ParseGoldRDF extends 类DefaultHandler,使用DefaultHandler类中的startDocument()、endDocument()、startElement()、endElement()、characters(),解析完成后直接导入到MongoDB数据库中。 package process;import java.io.IOException;import java

自定义类ParseGoldRDF extends 类DefaultHandler,使用DefaultHandler类中的startDocument()、endDocument()、startElement()、endElement()、characters(),解析完成后直接导入到MongoDB数据库中。

package process;

import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
/*
* @date 2015-11-08
*/
public class ParseGoldRDF extends DefaultHandler {

	private OperateDB 			db = null;

	private List<Record> 		rcdLst = null;
	private Record 				rcd = null;
	private String 				nodeName = null;
	private String 				value = null;
	private String 				content = null;
	private boolean 			flag = false;
	Map<String,Object> 		mapKeyValue = new HashMap<String,Object>();

	public ParseGoldRDF(OperateDB db) {
		this.db = db;
	}

	// 开始解析文档
	public void startDocument() throws SAXException {
		super.startDocument(); // 调用父类的函数
		rcdLst = new ArrayList<Record>();
	}

	// 结束文档解析
	public void endDocument() throws SAXException {
		super.endDocument();
	}

	// 开始解析节点
	// qName: 当前节点的名字
	// attributes: 当前节点的属性
	public void startElement(String uri,String localName,String qName,Attributes attributes) throws SAXException {
		super.startElement(uri,localName,qName,attributes);
		nodeName = qName; // 记录当前节点的名字

		if (qName.equals("Cell")) {
			flag = true;
			rcd = new Record();
		}

		if (flag)
			value = attributes.getValue(0);
	}

	// ch: 存储元素的内容
	// start: 内容的开始位置
	// length: 内容的长度
	public void characters(char[] ch,int start,int length)
			throws SAXException {
		super.characters(ch,start,length);
		if (!flag)
			return;
		content = new String(ch,length);
	}

	// 结束节点解析
	public void endElement(String uri,String qName)
			throws SAXException {
		super.endElement(uri,qName);

		// 结束一个cell的解析
		if (qName.equals("Cell")) {
			String name = (String) mapKeyValue.get("entity1"); 
			if (java.lang.Character.isUpperCase(name.charAt(0)))   //首字母大写,class
				mapKeyValue.put("type","class"); 
			else                                                   //否则是prop
				mapKeyValue.put("type","prop");
			
			rcd.setAttrKeyValue(mapKeyValue);
			rcdLst.add(rcd);
			mapKeyValue.clear();
			flag = false;
			return;
		}

		switch (nodeName) {
		case "entity1":
		case "entity2":
			String[] ele = value.split("#");
			value = ele[1];
			mapKeyValue.put(nodeName,value);
			break;
		case "relation":
			mapKeyValue.put(nodeName,content);
			break;
		default:
			break;
		}
	}
	
	//解析GD.rdf,返回map
	public void parseGD(String fileName,Map<String,String> alignClass,String> alignProp) throws Exception{

		alignClass.clear();
		alignProp.clear();
		SAXParserFactory factory = SAXParserFactory.newInstance();
		try {
			// 创建解析器
			SAXParser parser = factory.newSAXParser();
			parser.parse(fileName,this);

		} catch (ParserConfigurationException e) {
			System.out.println("ParserConfig error");
		} catch (SAXException e) {
			System.out.println("SAXException: xml not well formed");
		} catch (IOException e) {
			System.out.println("IO error");
		} finally{
			for(Record rcd:rcdLst){
				Map<String,Object> map = rcd.getAttrKeyValue();
				String type = map.get("type").toString();
				String entity1 = map.get("entity1").toString();
				String entity2 = map.get("entity2").toString();
				
				if(type.equals("class"))
					alignClass.put(entity1,entity2);
				else
					alignProp.put(entity1,entity2);
			}
		}
	}

	//解析GD.rdf,写入数据库
	public void parseDocument(String fileName) {
		// 实例化SAXParserFactory对象
		SAXParserFactory factory = SAXParserFactory.newInstance();
		try {
			// 创建解析器
			SAXParser parser = factory.newSAXParser();
			parser.parse(fileName,this);

		} catch (ParserConfigurationException e) {
			System.out.println("ParserConfig error");
		} catch (SAXException e) {
			System.out.println("SAXException: xml not well formed");
		} catch (IOException e) {
			System.out.println("IO error");
		} finally{
			// 写入数据库
			db.WriteDB(rcdLst,false);
		}
	}

	/**
	 * @param args
	 */
	public static void main(String[] args) throws Exception {
		// TODO Auto-generated method stub
		String rootPath = "E:1-My Papers8Alignment of Graphical Linked Data in Semantic WebdataOAEI2010benchmarks";
		String objName="304";
		String nameColl = "C"+objName+"GD";
		OperateDB db = new OperateDB("OAEI2010",nameColl);
		String fileGD    = rootPath + objName+"refalign.rdf";
		
		ParseGoldRDF handler = new ParseGoldRDF(db);
		handler.parseDocument(fileGD);
		System.out.println("finish parsing "+objName+"GD.rdf");
	}

}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读