de.micromata.opengis.kml.v_2_2_0.Kml.marshal()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(2.9k)|赞(0)|评价(0)|浏览(101)

本文整理了Java中de.micromata.opengis.kml.v_2_2_0.Kml.marshal()方法的一些代码示例,展示了Kml.marshal()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Kml.marshal()方法的具体详情如下:
包路径:de.micromata.opengis.kml.v_2_2_0.Kml
类名称:Kml
方法名:marshal

Kml.marshal介绍

[英]Java to KML The object graph is printed to the console. (Nothing is saved, nor saved. Just printed.)
[中]Java到KML对象图打印到控制台。(未保存任何内容,也未保存。仅打印。)

代码示例

代码示例来源:origin: de.micromata.jak/JavaAPIforKml

/**
 * Java to KML
 * The object graph is marshalled to a File object.
 * The object is not saved as a zipped .kmz file.
 * @see marshalKmz(String, Kml...)
 * 
 */
public boolean marshal(final File filename)
  throws FileNotFoundException
{
  OutputStream out = new FileOutputStream(filename);
  return this.marshal(out);
}

代码示例来源:origin: micromata/javaapiforkml

/**
 * Java to KML
 * The object graph is marshalled to a File object.
 * The object is not saved as a zipped .kmz file.
 * @see marshalKmz(String, Kml...)
 * 
 */
public boolean marshal(final File filename)
  throws FileNotFoundException
{
  OutputStream out = new FileOutputStream(filename);
  return this.marshal(out);
}

代码示例来源:origin: stackoverflow.com

final Kml kml = new Kml();
   Document document = kml.createAndSetDocument();
   listForms = formDAO.getAll();
   for (Form list : listForms){
     document.createAndAddPlacemark()
     .withName(String.valueOf(list.getId()))
     .withDescription(list.toStringKML())
     .createAndSetPoint().addToCoordinates(-20.3978398, -43.5146653);
   }
   kml.setFeature(document);
   kml.marshal(new File("test.kml"));

代码示例来源:origin: de.micromata.jak/JavaAPIforKml

/**
 * Internal method
 * 
 */
private void addKmzFile(Kml kmzFile, ZipOutputStream out, boolean mainfile)
  throws IOException
{
  String fileName = null;
  if (((kmzFile.getFeature() == null)||(kmzFile.getFeature().getName() == null))||(kmzFile.getFeature().getName().length() == 0)) {
    fileName = (("noFeatureNameSet"+ missingNameCounter ++)+".kml");
  } else {
    fileName = kmzFile.getFeature().getName();
    if (!fileName.endsWith(".kml")) {
      fileName += ".kml";
    }
  }
  if (mainfile) {
    fileName = "doc.kml";
  }
  out.putNextEntry(new ZipEntry(URLEncoder.encode(fileName, "UTF-8")));
  kmzFile.marshal(out);
  out.closeEntry();
}

代码示例来源:origin: micromata/javaapiforkml

/**
 * Internal method
 * 
 */
private void addKmzFile(Kml kmzFile, ZipOutputStream out, boolean mainfile)
  throws IOException
{
  String fileName = null;
  if (((kmzFile.getFeature() == null)||(kmzFile.getFeature().getName() == null))||(kmzFile.getFeature().getName().length() == 0)) {
    fileName = (("noFeatureNameSet"+ missingNameCounter ++)+".kml");
  } else {
    fileName = kmzFile.getFeature().getName();
    if (!fileName.endsWith(".kml")) {
      fileName += ".kml";
    }
  }
  if (mainfile) {
    fileName = "doc.kml";
  }
  out.putNextEntry(new ZipEntry(URLEncoder.encode(fileName, "UTF-8")));
  kmzFile.marshal(out);
  out.closeEntry();
}

代码示例来源:origin: usc-isi-i2/Web-Karma

kml.marshal(out);
String test = out.toString();
Writer outUTF8;

代码示例来源:origin: usc-isi-i2/Web-Karma

kml.marshal(outputFile);
logger.info("KML file published. Location:"
    + outputFile.getAbsolutePath());

相关文章