从C ++调用Java函数并传递值

时间:2017-06-08 23:01:16

标签: java c++ methods

说我在班级"读者":

中有以下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()执行它,但据我所知,你不能通过命令提示符传递一个值。你也不能收到结果

0 个答案:

没有答案