当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing loadBytes()用法及代码示例


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.org大神的英文原创作品 loadBytes()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。