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


Rust read_to_string用法及代码示例


本文简要介绍rust语言中 Function std::fs::read_to_string 的用法。

用法

pub fn read_to_string<P: AsRef<Path>>(path: P) -> Result<String>

将文件的全部内容读入字符串。

这是使用 File::open read_to_string 的便捷函数,导入较少且没有中间变量。

错误

如果path 不存在,此函数将返回错误。根据 OpenOptions::open 也可能返回其他错误。

如果在读取 io::ErrorKind::Interrupted 以外的错误时遇到错误,或者文件的内容不是有效的 UTF-8,它也会返回错误。

例子

use std::fs;
use std::net::SocketAddr;
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    let foo: SocketAddr = fs::read_to_string("address.txt")?.parse()?;
    Ok(())
}

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Function std::fs::read_to_string。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。