Processing, loadBytes()
用法介紹。
用法
loadBytes(filename)
參數
filename
(String)
數據文件夾中的文件名或 URL。
返回
byte[]
說明
讀取文件的內容並將其放入字節數組中。如果使用文件名作為參數,如上例,文件必須加載到草圖的"data"目錄/文件夾中。
或者,可以使用絕對路徑從本地計算機上的任何位置加載文件(在 Unix 和 Linux 上以 /開頭,或者在 Windows 上以驅動器號開頭),或者 filename 參數可以是在 a 上找到的文件的 URL網絡。
如果文件不可用或發生錯誤,將返回null
,並將錯誤消息打印到控製台。錯誤消息不會停止程序,但是如果您的代碼不檢查返回的值是否為 null
,則 null
值可能會導致 NullPointerException 。
例子
// Open a file and read its binary data
byte b[] = loadBytes("something.dat");
// Print each value, from 0 to 255
for (int i = 0; i < b.length; i++) {
// Every tenth number, start a new line
if ((i % 10) == 0) {
println();
}
// bytes are from -128 to 127, this converts to 0 to 255
int a = b[i] & 0xff;
print(a + " ");
}
// Print a blank line at the end
println();
相關用法
- Processing loadJSONArray()用法及代碼示例
- Processing loadJSONObject()用法及代碼示例
- Processing loadXML()用法及代碼示例
- Processing loadShader()用法及代碼示例
- Processing loadShape()用法及代碼示例
- Processing loadTable()用法及代碼示例
- Processing loadImage()用法及代碼示例
- Processing loadStrings()用法及代碼示例
- Processing loadPixels()用法及代碼示例
- Processing loadFont()用法及代碼示例
- Processing loop()用法及代碼示例
- Processing long用法及代碼示例
- Processing log()用法及代碼示例
- Processing lightSpecular()用法及代碼示例
- Processing lerp()用法及代碼示例
- Processing lerpColor()用法及代碼示例
- Processing lightFalloff()用法及代碼示例
- Processing line()用法及代碼示例
- Processing launch()用法及代碼示例
- Processing lights()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 loadBytes()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。