本文介绍了如何使用SimpleStorage插入xml prolog生成gpx文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我计划一劳永逸地采用一种工具来处理gpx文件的创建。

I plan to adopt once and for all handy a tool for handling the creation of gpx files.

我相信,它是在网站上的 Miha Remec

I've spotted relevant post from Miha Remec on OmniXML site.

我的问题的一个可能答案可以归结为如下:

One possible answer to my question might be boiled down to as follows :

with OwnerDocument(Result.XMLNode) do
begin
  InsertBefore(CreateProcessingInstruction('xml', 'version="1.0" encoding="UTF-8"'), DocumentElement)
end;

在指令行后追加:

  Result := CreateStorage('gpx'); 

这篇关于如何使用SimpleStorage插入xml prolog生成gpx文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 06:12