mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
add encoding support to file in/out node (#2066)
* add encoding support to file in/out node * update package.json * change default encoding label: 'none' -> 'utf8[default]' * add a missing message catalogue entry * change default encoding label
This commit is contained in:
committed by
Dave Conway-Jones
parent
3c013b3533
commit
dc89218702
@@ -860,6 +860,7 @@
|
||||
"filelabel": "file",
|
||||
"sendError": "Send message on error (legacy mode)",
|
||||
"deletelabel": "delete __file__",
|
||||
"encoding": "Encoding"
|
||||
"utf8String": "UTF8 string",
|
||||
"binaryBuffer": "binary buffer"
|
||||
},
|
||||
@@ -879,6 +880,21 @@
|
||||
"deletedfile": "deleted file: __file__",
|
||||
"appendedfile": "appended to file: __file__"
|
||||
},
|
||||
"encoding": {
|
||||
"none": "default",
|
||||
"native": "Native",
|
||||
"unicode": "Unicode",
|
||||
"japanese": "Japanese",
|
||||
"chinese": "Chinese",
|
||||
"korean": "Korean",
|
||||
"taiwan": "Taiwan/Hong Kong",
|
||||
"windows": "Windows codepages",
|
||||
"iso": "ISO codepages",
|
||||
"ibm": "IBM codepages",
|
||||
"mac": "Mac codepages",
|
||||
"koi8": "KOI8 codepages",
|
||||
"misc": "Miscellaneous"
|
||||
},
|
||||
"errors": {
|
||||
"nofilename": "No filename specified",
|
||||
"invaliddelete": "Warning: Invalid delete. Please use specific delete option in config dialog.",
|
||||
|
@@ -32,6 +32,7 @@
|
||||
<p>It can be configured to overwrite the entire file rather than append. For example,
|
||||
when writing binary data to a file, such as an image, this option should be used
|
||||
and the option to append a newline should be disabled.</p>
|
||||
<p>Encoding of data written to a file can be specified from list of encodings.</p>
|
||||
<p>Alternatively, this node can be configured to delete the file.</p>
|
||||
</script>
|
||||
|
||||
@@ -63,6 +64,7 @@
|
||||
split into smaller buffer chunks - the chunk size being operating system dependant, but typically 64k (Linux/Mac) or 41k (Windows).</p>
|
||||
<p>When split into multiple messages, each message will have a <code>parts</code>
|
||||
property set, forming a complete message sequence.</p>
|
||||
<p>Encoding of input data can be specified from list of encodings if output format is string.</p>
|
||||
<h4>Legacy error handling</h4>
|
||||
<p>Before Node-RED 0.17, if this node hit an error whilst reading the file, it would
|
||||
send a message with no <code>msg.payload</code> and <code>msg.error</code> set to the
|
||||
|
@@ -858,6 +858,7 @@
|
||||
"filelabel": "file",
|
||||
"sendError": "エラーメッセージを送信(互換モード)",
|
||||
"deletelabel": "delete __file__",
|
||||
"encoding": "エンコーディング"
|
||||
"utf8String": "UTF8文字列",
|
||||
"binaryBuffer": "バイナリバッファ"
|
||||
},
|
||||
@@ -877,6 +878,21 @@
|
||||
"deletedfile": "ファイルを削除しました: __file__",
|
||||
"appendedfile": "ファイルへ追記しました: __file__"
|
||||
},
|
||||
"encoding": {
|
||||
"none": "デフォルト",
|
||||
"native": "ネイティブ",
|
||||
"unicode": "UNICODE",
|
||||
"japanese": "日本",
|
||||
"chinese": "中国",
|
||||
"korean": "韓国",
|
||||
"taiwan": "台湾/香港",
|
||||
"windows": "Windowsコードページ",
|
||||
"iso": "ISOコードページ",
|
||||
"ibm": "IBMコードページ",
|
||||
"mac": "Macコードページ",
|
||||
"koi8": "KOI8コードページ",
|
||||
"misc": "その他"
|
||||
},
|
||||
"errors": {
|
||||
"nofilename": "ファイル名が設定されていません",
|
||||
"invaliddelete": "警告: 削除が無効です。設定ダイアログで特定の削除設定を使用してください",
|
||||
|
@@ -27,6 +27,7 @@
|
||||
<p>入力メッセージのペイロードをファイルの最後に追記します。改行(\n)を各データの最後に追加することもできます。</p>
|
||||
<p><code>msg.filename</code>を使う場合、書き込みを行う毎にファイルをクローズします。より良い性能を得るためにはファイル名をノードに設定してください。</p>
|
||||
<p>追記を行う代わりに、ファイル全体を上書きするように設定することもできます。例えば、画像のようなバイナリデータをファイルに書き出す場合は、このオプションを指定し、改行を追記するオプションを指定しないようにします。</p>
|
||||
<p>ファイル出力の際のエンコーディングは、エンコーディングリストから選択できます。</p>
|
||||
<p>この他、ファイルの削除を行うことも可能です。</p>
|
||||
</script>
|
||||
|
||||
@@ -51,6 +52,7 @@
|
||||
<p>Windowsではパスの区切り文字を(例えば、<code>\\ユーザー\\名前</code>のように)エスケープする必要があります。</p>
|
||||
<p>テキストファイルの場合、行毎に分割して各々メッセージを送信することができます。また、バイナリファイルの場合、小さな塊のバッファに分割して送信できます。バッファの分割単位はオペレーティングシステム依存ですが、一般に64k(Linux/Mac)もしくは41k(Windows)です。</p>
|
||||
<p>複数のメッセージに分割する場合、各メッセージには<code>parts</code>プロパティが設定され、メッセージ列を構成します。</p>
|
||||
<p>主力形式が文字列の場合、入力データのエンコーディングをエンコーディングリストから選択できます。</p>
|
||||
<h4>旧式のエラー処理</h4>
|
||||
<p>Node-RED 0.17より前の版では、ファイルの読み込み時にエラーが発生すると<code>payload</code>を持たず<code>error</code>プロパティにエラーの詳細情報を設定したメッセージを送信します。この動作モードは非推奨であり、新しいノード実装ではデフォルトでは無効としています。ノードの設定により、必要に応じてこのモードを有効にできます。</p>
|
||||
<p>エラーはcatchノードで補足して処理することを推奨します。</p>
|
||||
|
Reference in New Issue
Block a user