android 生成 kml代码,Java(Android)解析KML文件

package com.test.parsekml;

import java.io.File;

import java.io.FileInputStream;

import java.io.IOException;

import java.io.InputStream;

import java.util.Iterator;

import java.util.zip.ZipEntry;

import java.util.zip.ZipException;

import java.util.zip.ZipFile;

import java.util.zip.ZipInputStream;

import org.dom4j.Document;

import org.dom4j.DocumentException;

import org.dom4j.Element;

import org.dom4j.io.SAXReader;

import org.jsoup.Jsoup;

import org.jsoup.select.Elements;

import android.util.Log;

public class ReadKml {

public void parseKml(String pathName) throws Exception

{

File file = new File(pathName);//pathName为KML文件的路径

try {

ZipFile zipFile = new ZipFile(file);

ZipInputStream zipInputStream = null;

InputStream inputStream = null;

ZipEntry entry = null;

zipInputStream = new ZipInputStream(new FileInputStream(file));

while ((entry = zipInputStream.getNextEntry()) != null) {

String zipEntryName = entry.getName();

Log.d("压缩实体的名称:", zipEntryName);

if (zipEntryName.endsWith("kml") || zipEntryName.endsWith("kmz")) {

inputStream = zipFile.getInputStream(entry);

parseXmlWithDom4j(inputStream);

}else if (zipEntryName.endsWith("png")) {

/*ByteArrayOutputStream byteArrayOut = new ByteArrayOutputStream(); byte[] b = new byte[512]; int readedByteSize = 0; while ((readedByteSize = zipInputStream.read(b)) != -1) { byteArrayOut.write(b, 0, readedByteSize); } byteArrayOut.flush(); byteArrayOut.close(); InputStream isBitmap = new ByteArrayInputStream(byteArrayOut.toByteArray()); Bitmap bitmap = BitmapFactory.decodeStream(isBitmap); isBitmap.close();*/

}

}

zipInputStream.close();

inputStream.close();

} catch (ZipException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

public void parseXmlWithDom4j(InputStream input) throws Exception

{

SAXReader reader = new SAXReader();

Document document = null;

try {

document = reader.read(input);

} catch (DocumentException e) {

// TODO: handle exception

e.printStackTrace();

}

Element root = document.getRootElement();//获取doc.kml文件的根结点

listNodes(root);

}

//遍历当前节点下的所有节点

public void listNodes(Element node){

Log.d("当前结点的名称:", node.getName());

//首先获取当前节点的所有属性节点

/* List list = node.attributes(); //遍历属性节点 for(Attribute attribute : list){ Log.d("属性", attribute.getName() +":" + attribute.getValue()); } */

//如果当前节点内容不为空,则输出

if(!(node.getTextTrim().equals("")) && "description".equals(node.getName())){

//Log.d("当前结点内容:", node.getText());

parseHtml(node.getText());

}

//同时迭代当前节点下面的所有子节点

//使用递归

Iterator iterator = node.elementIterator();

while(iterator.hasNext()){

Element e = iterator.next();

listNodes(e);

}

}

public void parseHtml(String htmlData)

{

org.jsoup.nodes.Document document = Jsoup.parse(htmlData);

Elements trs = document.select("table").select("tr");

String trContent = "";

String trContentSplit[] = null;

String x = "";

String y = "";

String name = "";

for (int i = 2; i < trs.size(); i++) {//在KML文件中的HTML文本中,共有13个tr,每个tr包含了一个属性,其中第二个tr包括了所有的属性,因此我们在处理时从第三个tr开始

trContent = trs.get(i).text();

trContentSplit = trContent.split(" ");

if ("name".equals(trContentSplit[0])) {

name = trContentSplit[1];

}

if ("x".equals(trContentSplit[0]) || "X".equals(trContentSplit[0])) {

x = trContentSplit[1].trim();

}

if ("y".equals(trContentSplit[0]) || "Y".equals(trContentSplit[0])) {

y = trContentSplit[1].trim();

}

/*Elements tds = elements.get(i).select("td"); for (int j = 0; j < tds.size(); j++) { htmlContent = tds.get(j).text(); }*/

}

Log.d("X:", x);

Log.d("Y:", y);

Log.d("Name:", name);

}

}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值