Processing, loadStrings()
用法介绍。
用法
loadStrings(filename)
loadStrings(reader)
参数
filename
(String)
要加载的文件或 url 的名称
返回
String[]
说明
读取文件的内容并创建其各个行的字符串数组。如果使用文件名作为参数,如上例,文件必须加载到草图的"data"目录/文件夹中。
或者,可以使用绝对路径从本地计算机上的任何位置加载文件(在 Unix 和 Linux 上以 /开头,或者在 Windows 上以驱动器号开头),或者 filename 参数可以是在 a 上找到的文件的 URL网络。
如果文件不可用或发生错误,将返回null
,并将错误消息打印到控制台。错误消息不会停止程序,但是如果您的代码不检查返回的值是否为 null
,则 null
值可能会导致 NullPointerException 。
从处理版本 0134 开始,处理 API 加载和保存的所有文件都使用 UTF-8 编码。在以前的版本中,使用了您平台的默认编码,这在将文件移动到其他平台时会导致问题。
例子
String[] lines = loadStrings("list.txt");
println("there are " + lines.length + " lines");
for (int i = 0 ; i < lines.length; i++) {
println(lines[i]);
}
String[] lines = loadStrings("http://processing.org/about/index.html");
println("there are " + lines.length + " lines");
for (int i = 0 ; i < lines.length; i++) {
println(lines[i]);
}
相关用法
- Processing loadShader()用法及代码示例
- Processing loadShape()用法及代码示例
- Processing loadJSONArray()用法及代码示例
- Processing loadJSONObject()用法及代码示例
- Processing loadXML()用法及代码示例
- Processing loadTable()用法及代码示例
- Processing loadImage()用法及代码示例
- Processing loadBytes()用法及代码示例
- 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大神的英文原创作品 loadStrings()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。