這項服務提供字串編碼/解碼、日期格式、JSON 操作和其他雜項作業的實用工具。
屬性
屬性 | 類型 | 說明 |
---|---|---|
Charset | Charset | |
Digest | Digest | |
Mac | Mac | |
Rsa | Rsa |
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
base64Decode(encoded) | Byte[] | 將 Base64 編碼字串解碼為 UTF-8 位元組陣列。 |
base64Decode(encoded, charset) | Byte[] | 將 base-64 編碼的字串解碼為特定字元集的位元組陣列。 |
base64DecodeWebSafe(encoded) | Byte[] | 將 base-64 網路安全編碼字串解碼為 UTF-8 位元組陣列。 |
base64DecodeWebSafe(encoded, charset) | Byte[] | 將 base-64 網路安全編碼字串解碼為特定字元集的位元組陣列。 |
base64Encode(data) | String | 根據指定的位元組陣列產生 Base64 編碼字串。 |
base64Encode(data) | String | 根據指定的字串產生 Base-64 編碼字串。 |
base64Encode(data, charset) | String | 使用特定字元集的指定字串,產生 Base64 編碼字串。 |
base64EncodeWebSafe(data) | String | 根據指定的位元組陣列,產生 Base64 網路安全編碼字串。 |
base64EncodeWebSafe(data) | String | 根據指定的字串產生 base-64 網路安全編碼字串。 |
base64EncodeWebSafe(data, charset) | String | 根據特定字元集的指定字串,產生 Base64 網路安全編碼字串。 |
compute | Byte[] | 針對指定的 Byte[] 值,使用指定演算法計算摘要。 |
compute | Byte[] | 針對指定的 String 值,使用指定演算法計算摘要。 |
compute | Byte[] | 使用指定演算法,針對指定的 String 值和給定的字元集,計算摘要。 |
compute | Byte[] | 使用指定金鑰的 HMAC-SHA256 簽署提供的值。 |
compute | Byte[] | 使用指定金鑰的 HMAC-SHA256 簽署提供的值。 |
compute | Byte[] | 使用 HMAC-SHA256 和指定的鍵和字元集,為提供的值簽署。 |
compute | Byte[] | 使用指定演算法計算訊息驗證碼,並在指定金鑰和值上執行。 |
compute | Byte[] | 使用指定演算法計算訊息驗證碼,並在指定金鑰和值上執行。 |
compute | Byte[] | 使用指定演算法計算訊息驗證碼,並在指定金鑰和值上執行。 |
compute | Byte[] | 使用 RSA-SHA1 和指定金鑰,對提供的值進行簽署。 |
compute | Byte[] | 使用 RSA-SHA1 和指定的鍵和字元集,簽署提供的值。 |
compute | Byte[] | 使用指定金鑰,以 RSA-SHA256 簽署提供的值。 |
compute | Byte[] | 使用指定金鑰,以 RSA-SHA256 簽署提供的值。 |
compute | Byte[] | 使用指定的 RSA 演算法和指定金鑰,為提供的值簽署。 |
compute | Byte[] | 使用指定的 RSA 演算法、指定的金鑰和字元集,簽署所提供的值。 |
format | String | 根據 Java SE SimpleDateFormat 類別所述規格,設定日期格式。 |
format | String | 使用「%」格式字串執行類似 sprintf 的字串格式設定。 |
get | String | 取得 UUID 做為字串 (等同於使用 java.util.UUID.randomUUID() 方法)。 |
gzip(blob) | Blob | gzip -壓縮提供的 Blob 資料,並在新的 Blob 物件中傳回。 |
gzip(blob, name) | Blob | gzip -壓縮提供的 Blob 資料,並在新的 Blob 物件中傳回。 |
new | Blob | 使用位元組陣列建立新的 Blob 物件。 |
new | Blob | 根據位元組陣列和內容類型建立新的 Blob 物件。 |
new | Blob | 使用位元組陣列、內容類型和名稱,建立新的 Blob 物件。 |
new | Blob | 使用字串建立新的 Blob 物件。 |
new | Blob | 使用字串和內容類型建立新的 Blob 物件。 |
new | Blob | 使用字串、內容類型和名稱建立新的 Blob 物件。 |
parse | String[][] | 傳回 CSV 字串的 2D 表格陣列表示法。 |
parse | String[][] | 使用自訂分隔符號,傳回 CSV 字串的 2D 表格陣列表示法。 |
parse | Date | 根據 Java Standard Edition Simple 類別中所述的規格,剖析提供的字串日期。 |
sleep(milliseconds) | void | 休眠指定的毫秒數。 |
ungzip(blob) | Blob | 解壓縮 Blob 物件,並傳回包含未壓縮資料的 Blob 。 |
unzip(blob) | Blob[] | 接收代表 ZIP 檔案的 Blob,並傳回其元件檔案。 |
zip(blobs) | Blob | 建立新的 Blob 物件,這是一個 ZIP 檔案,其中包含從 Blob 傳入的資料。 |
zip(blobs, name) | Blob | 建立新的 Blob 物件,這是一個 ZIP 檔案,其中包含從 Blob 傳入的資料。 |
內容詳盡的說明文件
base64Decode(encoded)
將 Base64 編碼的字串解碼為 UTF-8 位元組陣列。
// This is the base64 encoded form of "Google グループ" const base64data = 'R29vZ2xlIOOCsOODq+ODvOODlw=='; // This logs: // [71, 111, 111, 103, 108, 101, 32, -29, -126, -80, // -29, -125, -85, -29, -125, -68, -29, -125, -105] const decoded = Utilities.base64Decode(base64data); Logger.log(decoded); // If we want a String instead of a byte array: // This logs the original "Google グループ" Logger.log(Utilities.newBlob(decoded).getDataAsString());
參數
名稱 | 類型 | 說明 |
---|---|---|
encoded | String | 要解碼的位元組資料陣列。 |
回攻員
Byte[]
:以位元組陣列形式,由 base-64 編碼引數表示的原始資料。
base64Decode(encoded, charset)
將 Base64 編碼的字串解碼為特定字元集的位元組陣列。
// This is the base64 encoded form of "Google グループ" const base64data = 'R29vZ2xlIOOCsOODq+ODvOODlw=='; const decoded = Utilities.base64Decode(base64data, Utilities.Charset.UTF_8); // This logs: // [71, 111, 111, 103, 108, 101, 32, -29, -126, -80, // -29, -125, -85, -29, -125, -68, -29, -125, -105] Logger.log(decoded); // If we want a String instead of a byte array: // This logs the original "Google グループ" Logger.log(Utilities.newBlob(decoded).getDataAsString());
參數
名稱 | 類型 | 說明 |
---|---|---|
encoded | String | 要解碼的資料字串。 |
charset | Charset | 指定輸入字元集的 Charset 。 |
回攻員
Byte[]
:以位元組陣列形式,由 base-64 編碼引數表示的原始資料。
base64DecodeWebSafe(encoded)
將 base-64 網路安全編碼字串解碼為 UTF-8 位元組陣列。
// This is the base64 web-safe encoded form of "Google グループ" const base64data = 'R29vZ2xlIOOCsOODq-ODvOODlw=='; const decoded = Utilities.base64DecodeWebSafe(base64data); // This logs: // [71, 111, 111, 103, 108, 101, 32, -29, -126, -80, // -29, -125, -85, -29, -125, -68, -29, -125, -105] Logger.log(decoded); // If we want a String instead of a byte array: // This logs the original "Google グループ" Logger.log(Utilities.newBlob(decoded).getDataAsString());
參數
名稱 | 類型 | 說明 |
---|---|---|
encoded | String | 要解碼的網路安全資料位元組陣列。 |
回攻員
Byte[]
:以位元組陣列形式,由 base-64 網路安全編碼引數代表的原始資料。
base64DecodeWebSafe(encoded, charset)
將 Base64 網路安全編碼字串解碼為特定字元集的位元組陣列。
// This is the base64 web-safe encoded form of "Google グループ" const base64data = 'R29vZ2xlIOOCsOODq-ODvOODlw=='; const decoded = Utilities.base64DecodeWebSafe( base64data, Utilities.Charset.UTF_8, ); // This logs: // [71, 111, 111, 103, 108, 101, 32, -29, -126, -80, // -29, -125, -85, -29, -125, -68, -29, -125, -105] Logger.log(decoded); // If we want a String instead of a byte array: // This logs the original "Google グループ" Logger.log(Utilities.newBlob(decoded).getDataAsString());
參數
名稱 | 類型 | 說明 |
---|---|---|
encoded | String | 要解碼的網路安全資料字串。 |
charset | Charset | 指定輸入字元集的 Charset 。 |
回攻員
Byte[]
:以位元組陣列形式,由 base-64 網路安全編碼引數代表的原始資料。
base64Encode(data)
根據指定的位元組陣列產生 Base64 編碼字串。Base 64 是一種常見的編碼,許多無法接受二進位資料的工具都接受這種編碼。Base 64 通常用於電子郵件、HTTP 等網際網路通訊協定,或 XML 文件。
// Instantiates a blob here for clarity const blob = Utilities.newBlob('A string here'); // Writes 'QSBzdHJpbmcgaGVyZQ==' to the log. const encoded = Utilities.base64Encode(blob.getBytes()); Logger.log(encoded);
參數
名稱 | 類型 | 說明 |
---|---|---|
data | Byte[] | 要編碼的 byte[] 資料。 |
回攻員
String
:傳入資料的 Base-64 編碼表示法。
base64Encode(data)
根據指定的字串產生 Base-64 編碼字串。Base 64 是各種工具接受的常見編碼,但這些工具無法接受二進位資料。Base 64 通常用於電子郵件、HTTP 等網路通訊協定,或 XML 文件。
// Writes 'QSBzdHJpbmcgaGVyZQ==' to the log. const encoded = Utilities.base64Encode('A string here'); Logger.log(encoded);
參數
名稱 | 類型 | 說明 |
---|---|---|
data | String | 要編碼的字串。 |
回攻員
String
:輸入字串的 base-64 編碼表示法。
base64Encode(data, charset)
根據特定字元集的指定字串,產生 Base64 編碼字串。字元集是一種編碼字元的方式,可讓字元進行編碼。這些通常以二進位格式執行,通常無法與特定資料傳輸通訊協定相容。為了讓資料相容,通常會將資料編碼為 base 64,這是許多無法接受二進位資料的工具接受的常見編碼。Base 64 通常用於電子郵件、HTTP 等網際網路通訊協定,或 XML 文件。
// "Google Groups" in Katakana (Japanese) const input = 'Google グループ'; // Writes "R29vZ2xlIOOCsOODq+ODvOODlw==" to the log const encoded = Utilities.base64Encode(input, Utilities.Charset.UTF_8); Logger.log(encoded);
參數
名稱 | 類型 | 說明 |
---|---|---|
data | String | 要編碼的資料字串。 |
charset | Charset | 指定輸入字元集的 Charset 。 |
回攻員
String
:使用指定 Charset
的輸入字串,以 Base-64 編碼表示。
base64EncodeWebSafe(data)
根據指定的位元組陣列,產生 Base-64 網路安全編碼字串。Base 64 是一種常見的編碼,許多無法接受二進位資料的工具都接受這種編碼。十六進制 64 位元網頁安全編碼通常用於電子郵件、HTTP 等網際網路通訊協定,或 XML 文件。
// Instantiates a blob here for clarity const blob = Utilities.newBlob('A string here'); // Writes 'QSBzdHJpbmcgaGVyZQ==' to the log. const encoded = Utilities.base64EncodeWebSafe(blob.getBytes()); Logger.log(encoded);
參數
名稱 | 類型 | 說明 |
---|---|---|
data | Byte[] | 要編碼的位元組資料陣列。 |
回攻員
String
:傳入資料的 Base-64 網路安全編碼表示法。
base64EncodeWebSafe(data)
根據指定的字串產生 base-64 網路安全編碼字串。Base 64 是一種常見的編碼,許多無法接受二進位資料的工具都接受這種編碼。以 Base 64 為基礎的網頁安全編碼通常用於電子郵件、HTTP 等網際網路通訊協定,或 XML 文件。
// Writes 'QSBzdHJpbmcgaGVyZQ==' to the log. const encoded = Utilities.base64EncodeWebSafe('A string here'); Logger.log(encoded);
參數
名稱 | 類型 | 說明 |
---|---|---|
data | String | 要編碼的字串。 |
回攻員
String
:輸入字串的 Base-64 網路安全編碼表示法。
base64EncodeWebSafe(data, charset)
根據特定字元集的指定字串,產生 Base64 網路安全編碼字串。字元集是一種編碼字元的方式,可讓字元進行編碼。這些通常會以二進位格式執行,而這通常與特定資料傳輸通訊協定不相容。為了讓資料相容,通常會將資料編碼為 base 64,這是許多無法接受二進位資料的工具所接受的常見編碼。以 Base 64 為基礎的網站安全編碼通常用於電子郵件、HTTP 等網際網路通訊協定,或 XML 文件。
// "Google Groups" in Katakana (Japanese) const input = 'Google グループ'; // Writes "R29vZ2xlIOOCsOODq-ODvOODlw==" to the log const encoded = Utilities.base64EncodeWebSafe(input, Utilities.Charset.UTF_8); Logger.log(encoded);
參數
名稱 | 類型 | 說明 |
---|---|---|
data | String | 要編碼的資料字串。 |
charset | Charset | 指定輸入字元集的 Charset 。 |
回攻員
String
:使用指定 Charset
的輸入字串,以 Base64 網路安全編碼表示法表示。
compute Digest(algorithm, value)
使用指定演算法計算指定 Byte[]
值的摘要。
const input = Utilities.base64Decode( 'aW5wdXQgdG8gaGFzaA0K'); // == base64encode("input to hash") const digest = Utilities.computeDigest(Utilities.DigestAlgorithm.MD5, input); Logger.log(digest);
參數
名稱 | 類型 | 說明 |
---|---|---|
algorithm | Digest | 要使用的 Digest 。 |
value | Byte[] | 要計算摘要的輸入字串值。 |
回攻員
Byte[]
:代表輸出摘要的 byte[]。
compute Digest(algorithm, value)
使用指定演算法計算指定 String
值的摘要。
const digest = Utilities.computeDigest( Utilities.DigestAlgorithm.MD5, 'input to hash', ); Logger.log(digest);
參數
名稱 | 類型 | 說明 |
---|---|---|
algorithm | Digest | 要使用的 Digest 。 |
value | String | 要計算摘要的輸入字串值。 |
回攻員
Byte[]
:代表輸出摘要的 byte[]。
compute Digest(algorithm, value, charset)
使用指定演算法,針對指定的 String
值和給定的字元集,計算摘要。
const digest = Utilities.computeDigest( Utilities.DigestAlgorithm.MD5, 'input to hash', Utilities.Charset.US_ASCII, ); Logger.log(digest);
參數
名稱 | 類型 | 說明 |
---|---|---|
algorithm | Digest | 要使用的 Digest 。 |
value | String | 要計算摘要的輸入字串值。 |
charset | Charset | 代表輸入字元集的 Charset 。 |
回攻員
Byte[]
:代表輸出摘要的 byte[]。
compute Hmac Sha256Signature(value, key)
使用指定金鑰的 HMAC-SHA256 簽署所提供的值。
// This writes an array of bytes to the log. const input = Utilities.base64Decode( 'aW5wdXQgdG8gaGFzaA0K'); // == base64encode("input to hash") const key = Utilities.base64Decode('a2V5'); // == base64encode("key") const signature = Utilities.computeHmacSha256Signature(input, key); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
value | Byte[] | 要產生雜湊的輸入值。 |
key | Byte[] | 用於產生雜湊值的鍵。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Hmac Sha256Signature(value, key)
使用指定金鑰的 HMAC-SHA256 簽署所提供的值。
// This writes an array of bytes to the log. const signature = Utilities.computeHmacSha256Signature( 'this is my input', 'my key - use a stronger one', ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生雜湊值的鍵。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Hmac Sha256Signature(value, key, charset)
使用 HMAC-SHA256 和指定的金鑰和字元集,為提供的值簽署。
// This writes an array of bytes to the log. const signature = Utilities.computeHmacSha256Signature( 'this is my input', 'my key - use a stronger one', Utilities.Charset.US_ASCII, ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生雜湊值的鍵。 |
charset | Charset | 代表輸入字元集的 Charset 。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Hmac Signature(algorithm, value, key)
使用指定演算法,針對指定的鍵和值計算訊息驗證碼。
// This writes an array of bytes to the log. const input = Utilities.base64Decode( 'aW5wdXQgdG8gaGFzaA0K'); // == base64encode("input to hash") const key = Utilities.base64Decode('a2V5'); // == base64encode("key") const signature = Utilities.computeHmacSignature( Utilities.MacAlgorithm.HMAC_MD5, input, key, ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
algorithm | Mac | 用於雜湊輸入值的 Mac 演算法。 |
value | Byte[] | 要產生雜湊的輸入值。 |
key | Byte[] | 用於產生雜湊值的鍵。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Hmac Signature(algorithm, value, key)
使用指定演算法,針對指定的鍵和值計算訊息驗證碼。
// This writes an array of bytes to the log. const signature = Utilities.computeHmacSignature( Utilities.MacAlgorithm.HMAC_MD5, 'input to hash', 'key', ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
algorithm | Mac | 用於雜湊輸入值的 Mac 演算法。 |
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生雜湊值的鍵。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Hmac Signature(algorithm, value, key, charset)
使用指定演算法,針對指定的鍵和值計算訊息驗證碼。
// This writes an array of bytes to the log. const signature = Utilities.computeHmacSignature( Utilities.MacAlgorithm.HMAC_MD5, 'input to hash', 'key', Utilities.Charset.US_ASCII, ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
algorithm | Mac | 用於雜湊輸入值的 Mac 演算法。 |
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生雜湊值的鍵。 |
charset | Charset | 代表輸入字元集的 Charset 。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Rsa Sha1Signature(value, key)
使用 RSA-SHA1 和指定金鑰,對提供的值進行簽署。
// This writes an array of bytes to the log. const signature = Utilities.computeRsaSha1Signature( 'this is my input', PropertiesService.getScriptProperties().getProperty('YOUR_PRIVATE_KEY'), ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生簽章的 PEM 格式金鑰。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Rsa Sha1Signature(value, key, charset)
使用 RSA-SHA1 和指定的金鑰和字元集,對提供的值進行簽署。
// This writes an array of bytes to the log. const signature = Utilities.computeRsaSha1Signature( 'this is my input', PropertiesService.getScriptProperties().getProperty('YOUR_PRIVATE_KEY'), Utilities.Charset.US_ASCII, ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生簽章的 PEM 格式金鑰。 |
charset | Charset | 代表輸入字元集的 Charset 。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Rsa Sha256Signature(value, key)
使用指定金鑰,以 RSA-SHA256 簽署提供的值。
// This writes an array of bytes to the log. const signature = Utilities.computeRsaSha256Signature( 'this is my input', PropertiesService.getScriptProperties().getProperty('YOUR_PRIVATE_KEY'), ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生簽章的 PEM 格式金鑰。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Rsa Sha256Signature(value, key, charset)
使用指定金鑰,以 RSA-SHA256 簽署提供的值。
// This writes an array of bytes to the log. const signature = Utilities.computeRsaSha256Signature( 'this is my input', PropertiesService.getScriptProperties().getProperty('YOUR_PRIVATE_KEY'), ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生簽章的 PEM 格式金鑰。 |
charset | Charset | 代表輸入字元集的 Charset 。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Rsa Signature(algorithm, value, key)
使用指定的 RSA 演算法和指定金鑰,為提供的值簽署。
// This writes an array of bytes to the log. const signature = Utilities.computeRsaSignature( Utilities.RsaAlgorithm.RSA_SHA_256, 'this is my input', PropertiesService.getScriptProperties().getProperty('YOUR_PRIVATE_KEY'), ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
algorithm | Rsa | 用於雜湊輸入值的 Rsa 演算法。 |
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生簽章的 PEM 格式金鑰。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
compute Rsa Signature(algorithm, value, key, charset)
使用指定的 RSA 演算法、指定的金鑰和字元集,簽署所提供的值。
// This writes an array of bytes to the log. const signature = Utilities.computeRsaSignature( Utilities.RsaAlgorithm.RSA_SHA_256, 'this is my input', PropertiesService.getScriptProperties().getProperty('YOUR_PRIVATE_KEY'), Utilities.Charset.US_ASCII, ); Logger.log(signature);
參數
名稱 | 類型 | 說明 |
---|---|---|
algorithm | Rsa | 用於雜湊輸入值的 Rsa 演算法。 |
value | String | 要產生雜湊的輸入值。 |
key | String | 用於產生簽章的 PEM 格式金鑰。 |
charset | Charset | 代表輸入字元集的 Charset 。 |
回攻員
Byte[]
:代表輸出簽名的 byte[]。
format Date(date, timeZone, format)
根據 Java SE SimpleDateFormat 類別所述規格,設定日期格式。請前往 http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html 參閱規格
// This formats the date as Greenwich Mean Time in the format // year-month-dateThour-minute-second. const formattedDate = Utilities.formatDate( new Date(), 'GMT', 'yyyy-MM-dd\'T\'HH:mm:ss\'Z\'', ); Logger.log(formattedDate);
參數
名稱 | 類型 | 說明 |
---|---|---|
date | Date | 將 Date 格式調整為字串。 |
time | String | 結果的輸出時區。 |
format | String | 符合 Simple 規格的格式。 |
回攻員
String
:輸入日期的格式化字串。
format String(template, args)
使用「%」格式字串執行類似 sprintf
的字串格式設定。
// " 123.456000" Utilities.formatString('%11.6f', 123.456); // " abc" Utilities.formatString('%6s', 'abc');
參數
名稱 | 類型 | 說明 |
---|---|---|
template | String | 控制傳回內容的格式字串。 |
args | Object... | 用於填入範本中「%」預留位置的物件。 |
回攻員
String
:格式化的字串。
get Uuid()
取得 UUID 做為字串 (等同於使用 java.util.UUID.randomUUID()
方法)。此 ID 不保證在所有時間和空間中皆不重複。因此,請勿在需要保證唯一性的情況下使用。
// This assigns a UUID as a temporary ID for a data object you are creating in // your script. const myDataObject = { tempId: Utilities.getUuid(), };
回攻員
String
:以字串表示的 UUID。
gzip(blob)
gzip(blob, name)
gzip
-壓縮提供的 Blob
資料,並在新的 Blob
物件中傳回。這個版本的方法可讓您指定檔案名稱。
const textBlob = Utilities.newBlob( 'Some text to compress using gzip compression', ); // Create the compressed blob. const gzipBlob = Utilities.gzip(textBlob, 'text.gz');
參數
名稱 | 類型 | 說明 |
---|---|---|
blob | Blob | 使用 gzip 壓縮的 Blob 物件。 |
name | String | 要建立的 gzip 檔案名稱。 |
回攻員
new Blob(data)
使用位元組陣列建立新的 Blob 物件。Blob 會用於許多以二進位資料做為輸入內容的 Apps Script API。
// Creates a blob object from a byte array. const data = [71, 79, 79, 71, 76, 69]; const blob = Utilities.newBlob(data); // Logs the blob data as a string to the console. console.log(blob.getDataAsString());
參數
名稱 | 類型 | 說明 |
---|---|---|
data | Byte[] | Blob 的位元組。 |
回攻員
Blob
:新建立的 Blob。
new Blob(data, contentType)
使用位元組陣列和內容類型建立新的 Blob 物件。Blob 會用於許多以二進位資料做為輸入內容的 Apps Script API。
// Declares a byte array. const data = [71, 79, 79, 71, 76, 69]; // Declares the content type of the blob. const contentType = 'application/json'; // Creates a blob object from the byte array and content type. const blob = Utilities.newBlob(data, contentType); // Logs the blob data as a string to the console. console.log(blob.getDataAsString()); // Logs the content type of the blob to the console. console.log(blob.getContentType());
參數
名稱 | 類型 | 說明 |
---|---|---|
data | Byte[] | Blob 的位元組。 |
content | String | Blob 的內容類型 - 可以是 null 。 |
回攻員
Blob
:新建立的 Blob。
new Blob(data, contentType, name)
使用位元組陣列、內容類型和名稱建立新的 Blob 物件。Blob 會用於許多以二進位資料做為輸入內容的 Apps Script API。
// Declares a byte array. const data = [71, 79, 79, 71, 76, 69]; // Declares the content type of the blob. const contentType = 'application/json'; // Declares the name of the blob. const name = 'Example blob'; // Creates a blob object from the byte array, content type, and name. const blob = Utilities.newBlob(data, contentType, name); // Logs the blob data as a string to the console. console.log('Blob data:', blob.getDataAsString()); // Logs the content type of the blob to the console. console.log('Blob content type:', blob.getContentType()); // Logs the name of the blob to the console. console.log('Blob name:', blob.getName());
參數
名稱 | 類型 | 說明 |
---|---|---|
data | Byte[] | Blob 的位元組。 |
content | String | - blob 的內容類型 - 可以是 null 。 |
name | String | Blob 的名稱 (可以是 null )。 |
回攻員
Blob
:新建立的 Blob。
new Blob(data)
使用字串建立新的 Blob 物件。Blob 會用於許多以二進位資料做為輸入內容的 Apps Script API。
// Declares a string for the blob. const data = 'GOOGLE'; // Creates a blob object from a string. const blob = Utilities.newBlob(data); // Logs the blob data in byte array to the console. console.log('Blob Data:', blob.getBytes());
參數
名稱 | 類型 | 說明 |
---|---|---|
data | String | 假設為 UTF-8 的 blob 字串。 |
回攻員
Blob
:新建立的 Blob。
new Blob(data, contentType)
使用字串和內容類型建立新的 Blob 物件。Blob 會用於許多以二進位資料做為輸入內容的 Apps Script API。
// Declares a string for the blob. const data = 'GOOGLE'; // Declares the content type of blob. const contentType = 'application/json'; // Creates a blob object from the string and content type. const blob = Utilities.newBlob(data, contentType); // Logs the blob data in byte array to the console. console.log('Blob data:', blob.getBytes()); // Logs the content type of the blob to the console. console.log(blob.getContentType());
參數
名稱 | 類型 | 說明 |
---|---|---|
data | String | 假設為 UTF-8 的 blob 字串。 |
content | String | Blob 的內容類型 - 可以是 null 。 |
回攻員
Blob
:新建立的 Blob。
new Blob(data, contentType, name)
使用字串、內容類型和名稱建立新的 Blob 物件。Blob 會用於許多以二進位資料做為輸入內容的 Apps Script API。
// Declares a string for the blob. const data = 'GOOGLE'; // Declares the content type of the blob. const contentType = 'application/json'; // Declares the name of the blob. const name = 'Example blob'; // Create a blob object from the string, content type, and name. const blob = Utilities.newBlob(data, contentType, name); // Logs the blob data in byte array to the console. console.log('Blob data:', blob.getBytes()); // Logs the content type of the blob to the console. console.log('Blob content type:', blob.getContentType()); // Logs the name of the blob to the console. console.log('Blob name:', blob.getName());
參數
名稱 | 類型 | 說明 |
---|---|---|
data | String | 假設為 UTF-8 的 blob 字串。 |
content | String | Blob 的內容類型 - 可以是 null 。 |
name | String | Blob 的名稱 (可以是 null )。 |
回攻員
Blob
:新建立的 Blob。
parse Csv(csv)
傳回 CSV 字串的 2D 表格陣列表示法。
// This creates a two-dimensional array of the format [[a, b, c], [d, e, f]] const csvString = 'a,b,c\nd,e,f'; const data = Utilities.parseCsv(csvString);
參數
名稱 | 類型 | 說明 |
---|---|---|
csv | String | 字串,其中包含以半形逗號分隔值 (CSV) 格式呈現的單行或多行資料。 |
回攻員
String[][]
:含有 CSV 字串中值的二維陣列。
parse Csv(csv, delimiter)
使用自訂分隔符,傳回 CSV 字串的 2D 表格陣列表示法。
// This creates a two-dimensional array of the format [[a, b, c], [d, e, f]] const csvString = 'a\tb\tc\nd\te\tf'; const data = Utilities.parseCsv(csvString, '\t');
參數
名稱 | 類型 | 說明 |
---|---|---|
csv | String | 字串,其中包含以半形逗號分隔值 (CSV) 格式呈現的單行或多行資料。 |
delimiter | Char | 在值之間。 |
回攻員
String[][]
:含有 CSV 字串中值的二維陣列。
parse Date(date, timeZone, format)
根據 Java 標準版 Simple
類別所述的規格,剖析提供的字串日期。詳情請參閱 Java Simple
類別。
// This set of parameters parses the given string as a date in Greenwich Mean // Time, formatted as year-month-dateThour-minute-second. const date = Utilities.parseDate( '1970-01-01 00:00:00', 'GMT', 'yyyy-MM-dd\' \'HH:mm:ss', ); Logger.log(date);
參數
名稱 | 類型 | 說明 |
---|---|---|
date | String | 要剖析為日期的字串值。 |
time | String | 輸出時區。 |
format | String | 依據 Simple 規格設定的日期格式。 |
回攻員
Date
:輸入字串做為日期。
sleep(milliseconds)
休眠指定的毫秒數。立即讓指令碼進入休眠狀態,休眠時間為指定的毫秒數。允許的最大值為 300000 (也就是 5 分鐘)。
// Creates a blob object from a string. const data = 'GOOGLE'; const blob = Utilities.newBlob(data); // Puts the script to sleep for 10,000 milliseconds (10 seconds). Utilities.sleep(10000); // Logs the blob data in byte array to the console. console.log(blob.getBytes());
參數
名稱 | 類型 | 說明 |
---|---|---|
milliseconds | Integer | 休眠的毫秒數。 |
ungzip(blob)
const textBlob = Utilities.newBlob( 'Some text to compress using gzip compression', ); // Create the compressed blob. const gzipBlob = Utilities.gzip(textBlob, 'text.gz'); // Uncompress the data. const uncompressedBlob = Utilities.ungzip(gzipBlob);
參數
名稱 | 類型 | 說明 |
---|---|---|
blob | Blob | 壓縮資料的 Blob 。 |
回攻員
unzip(blob)
接收代表 ZIP 檔案的 Blob,並傳回其元件檔案。
const googleFavIconUrl = 'https://www.google.com/favicon.ico'; const googleLogoUrl = 'https://www.google.com/images/srpr/logo3w.png'; // Fetch the Google favicon.ico file and get the Blob data const faviconBlob = UrlFetchApp.fetch(googleFavIconUrl).getBlob(); const logoBlob = UrlFetchApp.fetch(googleLogoUrl).getBlob(); // zip now references a blob containing an archive of both faviconBlob and // logoBlob const zip = Utilities.zip([faviconBlob, logoBlob], 'google_images.zip'); // This now unzips the blobs const files = Utilities.unzip(zip);
參數
名稱 | 類型 | 說明 |
---|---|---|
blob | Blob | ZIP 檔案 blob。 |
回攻員
Blob[]
:Blob[],代表元件 blob,每個元件都以 zip 中的完整路徑命名。
zip(blobs)
建立新的 Blob 物件,這是一個 ZIP 檔案,其中包含從 Blob 傳入的資料。
const googleFavIconUrl = 'https://www.google.com/favicon.ico'; const googleLogoUrl = 'https://www.google.com/images/srpr/logo3w.png'; // Fetch the Google favicon.ico file and get the Blob data const faviconBlob = UrlFetchApp.fetch(googleFavIconUrl).getBlob(); const logoBlob = UrlFetchApp.fetch(googleLogoUrl).getBlob(); // zip now references a blob containing an archive of both faviconBlob and // logoBlob const zip = Utilities.zip([faviconBlob, logoBlob]);
參數
名稱 | 類型 | 說明 |
---|---|---|
blobs | Blob | 要壓縮的 Blob 陣列。 |
回攻員
Blob
:新的 blob,其中包含做為封存檔的輸入內容。
zip(blobs, name)
建立新的 Blob 物件,也就是包含從 Blob 傳入的資料的 ZIP 檔案。這個方法版本可讓您指定檔案名稱。
const googleFavIconUrl = 'https://www.google.com/favicon.ico'; const googleLogoUrl = 'https://www.google.com/images/srpr/logo3w.png'; // Fetch the Google favicon.ico file and get the Blob data const faviconBlob = UrlFetchApp.fetch(googleFavIconUrl).getBlob(); const logoBlob = UrlFetchApp.fetch(googleLogoUrl).getBlob(); // zip now references a blob containing an archive of both faviconBlob and // logoBlob const zip = Utilities.zip([faviconBlob, logoBlob], 'google_images.zip');
參數
名稱 | 類型 | 說明 |
---|---|---|
blobs | Blob | 要壓縮的 Blob 陣列。 |
name | String | 要建立的 ZIP 檔案名稱。 |
回攻員
Blob
:新的 blob,其中包含做為封存檔的輸入內容。