将文件读取成二进制,使用read 函数. use std::fs; fn main() { let context = fs::read("tt").unwrap(); println!("context: {:#?}", context); }
確定! 回上一頁