這項服務可讓指令碼剖析、瀏覽及以程式設計方式建立 XML 文件。
// Log the title and labels for the first page of blog posts on the // Google Workspace Developer blog. function parseXml() { const url = 'https://gsuite-developers.googleblog.com/atom.xml'; const xml = UrlFetchApp.fetch(url).getContentText(); const document = XmlService.parse(xml); const root = document.getRootElement(); const atom = XmlService.getNamespace('http://www.w3.org/2005/Atom'); const entries = root.getChildren('entry', atom); for (let i = 0; i < entries.length; i++) { const title = entries[i].getChild('title', atom).getText(); const categoryElements = entries[i].getChildren('category', atom); const labels = []; for (let j = 0; j < categoryElements.length; j++) { labels.push(categoryElements[j].getAttribute('term').getValue()); } Logger.log('%s (%s)', title, labels.join(', ')); } } // Create and log an XML representation of the threads in your Gmail inbox. function createXml() { const root = XmlService.createElement('threads'); const threads = GmailApp.getInboxThreads(); for (let i = 0; i < threads.length; i++) { const child = XmlService.createElement('thread') .setAttribute('messageCount', threads[i].getMessageCount()) .setAttribute('isUnread', threads[i].isUnread()) .setText(threads[i].getFirstMessageSubject()); root.addContent(child); } const document = XmlService.createDocument(root); const xml = XmlService.getPrettyFormat().format(document); Logger.log(xml); }
屬性
屬性 | 類型 | 說明 |
---|---|---|
Content | Content | 代表 XML 內容節點類型的列舉。 |
方法
內容詳盡的說明文件
create Cdata(text)
create Doc Type(elementName)
為根 Element
節點建立未連結的 Document
節點,該節點具有指定名稱。
參數
名稱 | 類型 | 說明 |
---|---|---|
element | String | 在 Doc 宣告中指定的根 Element 節點名稱 |
回攻員
Doc
:新建立的 Document
節點
create Doc Type(elementName, systemId)
為根 Element
節點建立未連結的 Document
節點,並為外部子集資料提供指定的系統 ID。
參數
名稱 | 類型 | 說明 |
---|---|---|
element | String | 在 Doc 宣告中指定的根 Element 節點名稱 |
system | String | 要設定的外部子集資料的系統 ID |
回攻員
Doc
:新建立的 Document
節點
create Doc Type(elementName, publicId, systemId)
為根 Element
節點建立未連結的 Document
節點,並為外部子集資料提供指定的公開 ID 和系統 ID。
參數
名稱 | 類型 | 說明 |
---|---|---|
element | String | 在 Doc 宣告中指定的根 Element 節點名稱 |
public | String | 要設定的外部子集資料的公開 ID |
system | String | 要設定的外部子集資料的系統 ID |
回攻員
Doc
:新建立的 Document
節點
create Document()
create Document(rootElement)
create Element(name)
create Element(name, namespace)
get Compact Format()
建立 Format
物件,用於輸出精簡 XML 文件。格式化工具預設為 UTF-8
編碼、沒有縮排,且沒有額外的換行符號,但會包含 XML 宣告及其編碼。
// Log an XML document in compact form. const xml = '<root><a><b>Text!</b><b>More text!</b></a></root>'; const document = XmlService.parse(xml); const output = XmlService.getCompactFormat().format(document); Logger.log(output);
回攻員
Format
:新建立的格式轉換程式
get Namespace(prefix, uri)
get Pretty Format()
建立 Format
物件,用於輸出人類可讀的 XML 文件。格式化工具預設為 UTF-8
編碼、兩個空格的縮排、每個節點後方的 \r\n
行分隔符,並包含 XML 宣告及其編碼。
// Log an XML document in human-readable form. const xml = '<root><a><b>Text!</b><b>More text!</b></a></root>'; const document = XmlService.parse(xml); const output = XmlService.getPrettyFormat().format(document); Logger.log(output);
回攻員
Format
:新建立的格式轉換程式
get Raw Format()
建立 Format
物件,用於輸出原始 XML 文件。格式化工具預設為 UTF-8
編碼,除了 XML 文件本身提供的項目外,不包含任何縮排和換行符號,並包含 XML 宣告及其編碼。
// Log an XML document in raw form. const xml = '<root><a><b>Text!</b><b>More text!</b></a></root>'; const document = XmlService.parse(xml); const output = XmlService.getRawFormat().format(document); Logger.log(output);
回攻員
Format
:新建立的格式轉換程式