说我在班级"读者":
中有以下Java方法public static String read(String filePath) {
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(new File(filePath))));
String contents = "";
String line = null;
while ((line = br.readLine()) != null) {
contents += "\r\n" + line;
}
return contents;
}
我如何使用C ++执行Reader.read(" PathToFile")?我需要能够将路径传递给文件,并获得结果 我知道我可以使用System()执行它,但据我所知,你不能通过命令提示符传递一个值。你也不能收到结果